Skip to content Skip to sidebar Skip to footer

Making All Plugin Specific Rules Strict

In eslint.json configuration, ESLint allows to configure rule strictness using the following logic: 0 - 'off' 1 - 'warning' 2 - 'error' Example: { 'rules': { 'jasmine/valid

Solution 1:

ESLint doesn't have support for wildcards in configuration. However, you can request that plugin creator adds a shareable config into their plugin (http://eslint.org/docs/developer-guide/working-with-plugins#configs-in-plugins) after that you can just add extends: plugin:jasmine/all into your config file to use config all provided by plugin.


Post a Comment for "Making All Plugin Specific Rules Strict"