Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webextensions/eslint-config-ironplate
Shareable ESLint configuration
https://github.com/webextensions/eslint-config-ironplate
Last synced: about 2 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 5 years ago)
- Default Branch: main
- Last Pushed: 2024-04-24T16:48:22.000Z (9 months ago)
- Last Synced: 2024-04-24T21:03:41.032Z (9 months ago)
- Language: JavaScript
- Size: 96.7 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
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"
}```