Add a quick way to disable tslint for typescript projects
See original GitHub issueNot sure if there is an easy way to do this but I tried {eslint: {enable: false}}
and {tslint: {enable: false}}
.
Here is how I used to do it with rewired:
const EXCLUDED_PLUGINS = ['ForkTsCheckerWebpackPlugin'];
config.plugins = config.plugins.filter(plugin => !EXCLUDED_PLUGINS.includes(plugin.constructor.name));
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Add a quick way to disable tslint for typescript projects #75
Not sure if there is an easy way to do this but I tried {eslint: {enable: false}} and {tslint: {enable: false}}. Here is...
Read more >Is it possible to disable TSLint in tslint.json? - Stack Overflow
P.S.. It's possible to disable it by adding comment to the file, but I don't want to add such comment to every TS...
Read more >Configuring TSLint - Palantir Open Source
TSLint documentation. A linter for the TypeScript language.
Read more >Migrate from TSLint to ESLint - Visual Studio Code
You are now ready to run ESLint, but before doing that, we recommend you disable TSLint. To do so, open the Extensions view...
Read more >Ditch TSLint with ESLint in SharePoint Framework projects
The first step is to remove that deprecated TSLint tool from your project, as well as all related files. Within the file ./gulpfile.js,...
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
@mgcrea available with https://www.npmjs.com/package/@craco/craco/v/3.6.0
You can disable typescript type checking by doing
@patricklafrance Just WHERE to write this ?!