mempool/backend/.eslintrc

41 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-07-05 13:29:11 +02:00
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
2022-07-05 13:29:11 +02:00
],
"rules": {
"@typescript-eslint/ban-ts-comment": 1,
"@typescript-eslint/ban-types": 1,
"@typescript-eslint/no-empty-function": 1,
"@typescript-eslint/no-explicit-any": 1,
2022-07-26 01:01:55 +02:00
"@typescript-eslint/no-inferrable-types": 0,
2022-07-05 13:29:11 +02:00
"@typescript-eslint/no-namespace": 1,
"@typescript-eslint/no-this-alias": 1,
"@typescript-eslint/no-var-requires": 1,
2022-07-26 01:01:55 +02:00
"@typescript-eslint/explicit-function-return-type": 1,
2024-05-13 12:16:28 +02:00
"@typescript-eslint/no-unused-vars": 1,
2022-07-05 13:29:11 +02:00
"no-console": 1,
"no-constant-condition": 1,
"no-dupe-else-if": 1,
"no-empty": 1,
"no-prototype-builtins": 1,
"no-self-assign": 1,
"no-useless-catch": 1,
"no-var": 1,
"prefer-const": 1,
2022-07-26 01:01:55 +02:00
"prefer-rest-params": 1,
"quotes": [1, "single", { "allowTemplateLiterals": true }],
2022-08-23 15:05:23 +02:00
"semi": 1,
2024-05-13 12:16:28 +02:00
"curly": [1, "all"],
2024-06-24 04:16:59 +02:00
"eqeqeq": 1,
"no-trailing-spaces": 1
2022-07-05 13:29:11 +02:00
}
}