tornado-relayer/.eslintrc.json

36 lines
627 B
JSON
Raw Normal View History

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