Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jeremybanka/eslint-config


https://github.com/jeremybanka/eslint-config

Last synced: 20 days ago
JSON representation

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"
}
}
...
```