@jvdx/eslint-config v5.3.0
@jvdx/eslint-config
Notice: The old configuration can be found in the
v3branch.
jvdx's ESLint configuration, with sensible defaults for ES6, React and
TypeScript projects.
This configuration is specifically for the new
eslint.config.js flat file configuration format.
It exports a configs objects with the following rulesets:
recommended- Recommended rules targeting**/*.{js,jsx,mjs,cjs}filesreact- React rules targeting**/*.{js,jsx,ts,tsx}files- These rules should be used in conjunction with the
baseortypescriptrulesets
- These rules should be used in conjunction with the
typescript- TypeScript rules targeting**/*.{ts,tsx,mts,cts}
See the Configurations section for more details.
Installation
Install configuration as well as peer dependencies:
$ npm install --save-dev @jvdx/eslint-config eslintUsage
Use in your eslint.config.js file anytime you want to extend one of
the configs:
import jvdxConfig from '@jvdx/eslint-config';
export default [
// Apply recommended rules
jvdxConfig.configs.recommended,
// Apply recommended rules and overwrite some configuration properties
{
...jvdxConfig.configs.recommended
files: ['**/*.js'],
},
// Apply recommended + react rules in conjunction
...jvdxConfig.configs.recommended,
...jvdxConfig.configs.react,
// Apply typescript + react rules in conjunction
...jvdxConfig.configs.typescript,
...jvdxConfig.configs.react,
];Configurations
Recommended
- Extends
eslint:recommendedandeslint-config-prettier - Targets
**/*.{js,jsx,mjs,cjs}files - Uses the default parser
- Uses no plugins
React
- Extends
eslint-plugin-react:recommended,eslint-plugin-react:jsx-runtimeeslint-plugin-react-hooks:recommendedandeslint-plugin-jsx-a11y:recommended - Targets
**/*.{js,jsx,ts,tsx}files - Uses the default parser
- Uses
react,react-hooksandjsx-a11yplugins
TypeScript
- Extends
@typescript-eslint/recommended,eslint:recommendedandeslint-config-prettier - Targets
**/*.{ts,tsx,mts,cts}files - Uses the
@typescript-eslint/parserparser - Uses
@typescript-eslint/eslint-pluginplugin
5 months ago
6 months ago
6 months ago
7 months ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago