* replace tslint with eslint + add eslintrc config * few more missing packages for eslint * exclude. now eslint is running (but there are errors) * correct excludes fixes all the linter issues * no need for max warnings
22 lines
524 B
Plaintext
22 lines
524 B
Plaintext
{
|
|
"env": {
|
|
"es2021": true,
|
|
"node": true
|
|
},
|
|
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"],
|
|
"overrides": [],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"project": "./tsconfig.json",
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": ["@typescript-eslint"],
|
|
"ignorePatterns": [
|
|
"lib/**/*",
|
|
"migrations/*",
|
|
"src/generated-wrappers/**/*",
|
|
"src/generated-artifacts/**/*"
|
|
],
|
|
"rules": {}
|
|
} |