https://github.com/webextensions/eslint-config-ironplate
Shareable ESLint configuration
https://github.com/webextensions/eslint-config-ironplate
Last synced: 6 months ago
JSON representation
Shareable ESLint configuration
- Host: GitHub
- URL: https://github.com/webextensions/eslint-config-ironplate
- Owner: webextensions
- License: mit
- Created: 2019-10-06T18:00:32.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2025-03-24T23:06:45.000Z (over 1 year ago)
- Last Synced: 2025-04-15T03:07:40.246Z (about 1 year ago)
- Language: JavaScript
- Size: 131 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-config-ironplate
Shareable ESLint configuration
## Installation
`$ npm install --save-dev eslint-config-ironplate`
When you run this installation command, you will also see a guide about installing peerDependencies.
## Example usages
In `.eslintrc` file, use it like one of the following combinations:
```json
{
"extends": [ "eslint-config-ironplate" ]
}
OR
{
"extends": [ "eslint-config-ironplate/node.js" ]
}
OR
{
"extends": [ "eslint-config-ironplate/react.js" ]
}
OR
{
"extends": [ "eslint-config-ironplate/typescript.js" ],
"parser": "@typescript-eslint/parser"
}
OR
{
"extends": [ "eslint-config-ironplate/node-typescript.js" ],
"parser": "@typescript-eslint/parser"
}
OR
{
"extends": [ "eslint-config-ironplate/react-typescript.js" ],
"parser": "@typescript-eslint/parser"
}
```