A tool to quickly generate customized ESLint configuration files.
- Choose between CommonJS or ESM format.
- Configure language options like
ecmaVersion
,jsx
, and more. - Include various settings like
sourceType
andparserOptions
. - Customize linter options like
noInlineConfig
,reportUnusedDisableDirectives
. - Option to add plugins, rules, and file/ignore configurations.
- Visit eslint-config-generator.shubhdeepchhabra.in.
- Select your desired options for the configuration file.
- Once done, click the Show config button to view and copy your ESLint configuration.
{
"env": {
"browser": true
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {
"semi": ["error", "always"]
}
}