Masafumi Koba
Masafumi Koba
If using the [`--conditions`](https://nodejs.org/api/cli.html#-ccondition---conditionscondition) flag with the `node` command, is `exports.stylelint` available for now?
Currently, Stylelint imports a plugin module here: https://github.com/stylelint/stylelint/blob/0967b9c3650812be83ae4c4dddb00e3958e4826d/lib/augmentConfig.js#L325 If we implement the feature, is it necessary to change the code above? Also, do we need to add a CLI flag...
For example, we can fix `scss/at-rule-no-unknown` like this: ```diff diff --git a/src/rules/at-rule-no-unknown/index.js b/src/rules/at-rule-no-unknown/index.js index ef0634c..58801ac 100644 --- a/src/rules/at-rule-no-unknown/index.js +++ b/src/rules/at-rule-no-unknown/index.js @@ -83,8 +83,8 @@ export default function rule(primaryOption, secondaryOptions) {...
@kristerkari Thanks for the response. It seems this task needs many PRs, so I created the following list to make progress clear: - [x] #689 - [x] ~~[at-else-closing-brace-newline-after](https://github.com/stylelint-scss/stylelint-scss/tree/master/src/rules/at-else-closing-brace-newline-after)~~ *already resolved*...
I've made one PR #655 to make subsequent PRs easier.
Thanks for the response. Indeed, we would like to avoid an addition to the RBS syntax if possible. Is there a way to avoid `Ruby::NoMethod` for top-level `using` now without...
In the case of adding a new method by refinements, the current RBS seems to work even if not using the `@type var` workaround. For example: `a.rbs`: ```ruby module M...
> Seems like we need a support for [main](https://docs.ruby-lang.org/ja/latest/class/main.html) object! I see. That makes sense. 👍🏼
@soutaro I'd like to add RBS for the `main` object, but I'm unsure how to do it. Is it correct to add `using` to `Object` like this...? ```ruby class Object...
> 1. Add `_Main` interface in RBS, which has `#using` method, and > 2. Let the type of toplevel `self` be `Object & _Main` in Steep Sounds good! 👍🏼