4.3.0 • Published 22 days ago

eslint-plugin-disable-autofix v4.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
22 days ago

eslint-plugin-disable-autofix

Disable autofix for ESLint rules and prevent them from being formatted without having to turn them off

Usage

Install

npm i -D eslint-plugin-disable-autofix

Configure

Include disable-autofix in the eslintrc plugins array

Add prefix disable-autofix/ to the rule and disable the original

module.exports = {
  plugins: ['disable-autofix'],
  rules: {
    'prefer-const': 'off',
    'disable-autofix/prefer-const': 'warn',
  },
};

Use 3rd-party rules

module.exports = {
  plugins: ['disable-autofix', 'react'],
  rules: {
    'react/jsx-indent': 'off',
    'disable-autofix/react/jsx-indent': 'error',
  },
};

Use scoped rules

module.exports = {
  plugins: ['disable-autofix', '@html-eslint'],
  rules: {
    '@html-eslint/require-closing-tags': 'off',
    'disable-autofix/@html-eslint/require-closing-tags': [
      'error',
      { selfClosing: 'always' },
    ],
  },
};
4.3.0

22 days ago

4.2.0

3 months ago

4.0.6

6 months ago

4.1.0

6 months ago

4.0.5

7 months ago

4.0.4

7 months ago

4.0.1

7 months ago

4.0.0

7 months ago

4.0.3

7 months ago

4.0.2

7 months ago

3.1.1

1 year ago

3.1.0

1 year ago

3.0.0

2 years ago

2.13.0

2 years ago

2.11.0

2 years ago

2.3.0

2 years ago

2.12.0

2 years ago

2.2.0

2 years ago

2.5.0

2 years ago

2.10.0

2 years ago

2.4.0

2 years ago

2.7.0

2 years ago

2.6.0

2 years ago

2.9.0

2 years ago

2.8.0

2 years ago

2.1.0

2 years ago

2.0.0

2 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago