@code-expert/eslint-config-prettier-typescript
v0.6.8
Published
CodeExpertETH eslint config for TypeScript with prettier
Downloads
311
Readme
Personal configs
Credit: Forked from ntnyq
EsLint config for TypeScript with Prettier
Usage
Install
$ npm i @code-expert/eslint-config-prettier-typescript -D
# OR
$ yarn add @code-expert/eslint-config-prettier-typescript -D
TODO: yarn add -D eslint typescript @typescript-eslint/parser @typescript-eslint/eslint-plugin
Extend this config
in .eslintrc.js
module.exports = {
root: true,
extends: ['@code-expert/prettier-typescript'],
rules: {
// Override rules
},
}
in package.json
{
"eslintConfig": {
"root": true,
"extends": "@code-expert/prettier-typescript"
}
}