Keijo Kapp
Keijo Kapp
> How to see the output of the ESLint extension ? Go to "output" tab an select "ESLint" from the dropdown on the right. And then open some file to...
Then I don't really know how to help further. I assume the "ESLint library loaded from..." line is also there (which is important as it means that the extension is...
As discussed in the linked issues: 1. `no-tabs` does not autofix and changing that is tricky because it may break strings and comments and create alignment issues if combined with...
It doesn't solve #784 in a strict sense and maybe shouldn't be considered a solution to that at all (which is why I didn't use "close" keywords). I initially interpreted...
> First, I am dynamically importing the module because of a [ERR_REQUIRE_ESM]: require() of ES Module problem: This is not going to work. ESLint configuration can't be specified asynchronously with...
> It is quite common to comment a piece of code That shouldn't be at all common in production code (ie the kind of code that linter is supposed to...
> Also I know that when I comment some code, it will have `*\tconst n = 1;` or `// \tconst n = 1;` in it. I don't need to be...
This behavior is from typescript-eslint/typescript-eslint#2892 and typescript-eslint/typescript-eslint#3176. Looking at the [source code](https://github.com/eslint-stylistic/eslint-stylistic/blob/753ee3e25cf7d1d154fa18866ad28c3fb7bdeb2d/packages/eslint-plugin-ts/rules/object-curly-spacing/object-curly-spacing.ts#L178-L182) and the [test cases](https://github.com/eslint-stylistic/eslint-stylistic/blob/753ee3e25cf7d1d154fa18866ad28c3fb7bdeb2d/packages/eslint-plugin-ts/rules/object-curly-spacing/object-curly-spacing.test.ts#L719-L739) here (introduced by 753ee3e2 in v0.0.3), it appears to be a deliberate behavior. The...
> But is it a trick or the good way to achieve the desired config ? It's fine. This is how overriding is supposed to be done. `customize` is opinionated...
FYI, there's a Discord server linked on the [organization page](https://github.com/eslint-stylistic) which might be a better place to get help and have these kinds of discussions. > @stylistic/max-len is not working...