not catching no-implicit-any
See original GitHub issueI cannot seem to get import-sort-style-module
to work with prettier-standard, likely as it uses prettierx under the hood right? Does anyone have any guidance there to prevent conflicts.
This became about not catching no-implicit-any
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:22 (11 by maintainers)
Top Results From Across the Web
visual studio code - noImplicitAny not working Typescript
But Visal Code not detecting noImplicitAny , anyone know what can be a problem? typescript · visual-studio-code · tsc · tsconfig · Share....
Read more >noImplicitAny not working Typescript · Issue #22295 - GitHub
In my root folder I have tsconfig.json file which looks like this: { "compilerOptions": { /* Basic Options */ "target": "es2015", ...
Read more >noImplicitAny - TypeScript Deep Dive - Gitbook
There are some things that cannot be inferred or inferring them might result in unexpected errors. A fine example is function arguments.
Read more >NoImplicitAny in TypeScript - Best Practice - tsmean
Should I use the noImplicitAny TypeScript compiler flag - yes or no? ... extra information that serve as documentation and for catching errors...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@sheerun I figured this out, @typescript-eslint does not report typescript compiler errors only errors from it’s own engine, by design. Unfortunately (but also sensibly) they do not include a check for no-implicit-any as you can instead just use
tsc --noEmit
to get that job done. Now onto getting prettier-standard to run import sorting… any ideas there?Please try
16.4.1
and remove**/*.ts
from .prettierignore