2019-07-18 16:22:56 +03:00
|
|
|
{
|
2020-07-16 16:33:35 +03:00
|
|
|
"env": {
|
|
|
|
"node": true,
|
2022-05-10 11:52:07 +03:00
|
|
|
"commonjs": true,
|
|
|
|
"es2020": true
|
2020-07-16 16:33:35 +03:00
|
|
|
},
|
2022-06-29 13:02:30 +03:00
|
|
|
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"],
|
2022-05-10 11:52:07 +03:00
|
|
|
"parser": "@typescript-eslint/parser",
|
2020-07-16 16:33:35 +03:00
|
|
|
"parserOptions": {
|
2022-05-10 11:52:07 +03:00
|
|
|
"ecmaVersion": 11
|
2020-07-16 16:33:35 +03:00
|
|
|
},
|
2022-06-29 13:02:30 +03:00
|
|
|
"plugins": ["@typescript-eslint"],
|
2020-07-16 16:33:35 +03:00
|
|
|
"rules": {
|
2022-06-29 13:02:30 +03:00
|
|
|
"linebreak-style": ["error", "unix"],
|
|
|
|
"quotes": ["error", "single"],
|
|
|
|
"semi": ["error", "always"],
|
2022-05-10 11:52:07 +03:00
|
|
|
"no-useless-catch": "off",
|
|
|
|
"@typescript-eslint/no-var-requires": "off",
|
|
|
|
"@typescript-eslint/explicit-module-boundary-types": "off"
|
2020-07-16 16:33:35 +03:00
|
|
|
}
|
2019-07-18 16:22:56 +03:00
|
|
|
}
|