https://github.com/shubhdeep12/eslint-config-generator
ESLint config generator, helps you to create config easily for your next javascript app.
https://github.com/shubhdeep12/eslint-config-generator
commonjs ecmascript eslint eslint-config eslint-rules eslintconfig javascript
Last synced: 4 months ago
JSON representation
ESLint config generator, helps you to create config easily for your next javascript app.
- Host: GitHub
- URL: https://github.com/shubhdeep12/eslint-config-generator
- Owner: Shubhdeep12
- License: unlicense
- Created: 2024-05-21T15:17:40.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2025-01-24T16:34:25.000Z (over 1 year ago)
- Last Synced: 2025-06-01T12:10:51.757Z (about 1 year ago)
- Topics: commonjs, ecmascript, eslint, eslint-config, eslint-rules, eslintconfig, javascript
- Language: TypeScript
- Homepage: https://eslint-config-generator.shubhdeepchhabra.in/
- Size: 507 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# ESLint Config Generator
A tool to quickly generate customized ESLint configuration files.
## Features
- Choose between **CommonJS** or **ESM** format.
- Configure **language options** like `ecmaVersion`, `jsx`, and more.
- Include various settings like `sourceType` and `parserOptions`.
- Customize linter options like `noInlineConfig`, `reportUnusedDisableDirectives`.
- Option to add plugins, rules, and file/ignore configurations.
## How to Use
1. Visit [eslint-config-generator.shubhdeepchhabra.in](https://eslint-config-generator.shubhdeepchhabra.in/).
2. Select your desired options for the configuration file.
3. Once done, click the **Show config** button to view and copy your ESLint configuration.
## Example
```json
{
"env": {
"browser": true
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {
"semi": ["error", "always"]
}
}