Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeremybanka/eslint-config
https://github.com/jeremybanka/eslint-config
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jeremybanka/eslint-config
- Owner: jeremybanka
- License: mit
- Created: 2021-11-07T06:45:49.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-05T02:10:32.000Z (about 3 years ago)
- Last Synced: 2024-11-08T06:56:28.141Z (2 months ago)
- Language: JavaScript
- Size: 68.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @banka/eslint-config
[npm](https://www.npmjs.com/package/@banka/eslint-config)
`npm i -D @banka/eslint-config`
||
`yarn add -D @banka/eslint-config`
## example package.json
```json
...
"devDependencies": {
"@banka/eslint-config": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.22.0",
"prettier": "^1.19.1",
}
...
"eslintConfig": {
"extends": [
"@banka" // or "@banka/react"
],
"parserOptions": {
"project": "./tsconfig.json"
}
}
...
```