* initialize eslint and remove tslint * change some packages + eslintrc * run eslint fix * run prettier * changelog * update package.json * changelog update+prettier
25 lines
638 B
JSON
25 lines
638 B
JSON
{
|
|
"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/*",
|
|
"generated-wrappers/**/*",
|
|
"generated-artifacts/**/*",
|
|
"test/generated-wrappers/**/*",
|
|
"test/generated-artifacts/**/*"
|
|
],
|
|
"rules": {}
|
|
}
|