tornado-relayer/.eslintrc.json

36 lines
627 B
JSON
Raw Normal View History

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-05-10 11:52:07 +03:00
"extends": [
"eslint:recommended",
2022-05-18 11:20:06 +03:00
"plugin:@typescript-eslint/recommended"
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-05-10 11:52:07 +03:00
"plugins": [
"@typescript-eslint"
],
2020-07-16 16:33:35 +03:00
"rules": {
2022-05-10 11:52:07 +03:00
"linebreak-style": [
2020-07-16 16:33:35 +03:00
"error",
2022-05-10 11:52:07 +03:00
"unix"
2020-07-16 16:33:35 +03:00
],
2020-10-02 13:26:05 +03:00
"quotes": [
"error",
2022-05-10 11:52:07 +03:00
"single"
2020-10-02 13:26:05 +03:00
],
2022-05-10 11:52:07 +03:00
"semi": [
2020-07-16 16:33:35 +03:00
"error",
2022-05-10 11:52:07 +03:00
"always"
],
"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
}