Klaus Meinhardt
Klaus Meinhardt
This issue tracks all proposals for editor and build tool integrations. Feel free to add any suggestions. I'm happy to accept pull requests even if an integration is not listed...
Blocked on https://github.com/microsoft/TypeScript/issues/42990
Follow up to #370 Rules that access files on Program, which are not global or a (transitive) dependency of the current file, currently don't work well with caching. That's because...
This mainly affects the LanguageService plugin. Currently a file of a project references is linted multiple times: once in the project that includes it and then for every (loaded) project...
Currently you always need to build referenced projects before linting any dependent project. In the language server this is not required because it uses the source instead of the declaration...
Motivation: * There's a lot of code related to linting without type information. * Some rules work slightly different with and without type information * this might still be the...
This proposes to add a `--watch` option or a plugin module that does the actual watching. * creates all the specified projects * regardless of whether it contains no files...
Currently excludes are inherited onto child configs. That means if any base config excludes a certain file, that file is **always** excluded and an extending config has no means to...
Repeatedly I want to add a reason why a certain rule is disabled. That's currently not supported in a single comment. This proposes a sigil to ignore the remaining part...
From #358: > there should be a way to say: "I know this chunk of code is nasty (or auto-generated), but I cannot fix it right now. I don't want...