ens-proxy/.eslintrc

17 lines
425 B
Plaintext
Raw Permalink Normal View History

2022-08-15 14:57:57 +02:00
{
2022-08-22 15:42:12 +02:00
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": ["./tsconfig.json"]
2022-08-15 14:57:57 +02:00
},
2022-08-22 15:42:12 +02:00
"extends": [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"plugins": ["@typescript-eslint", "prettier"],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off"
},
"env": { "es6": true, "node": true }
2022-08-15 14:57:57 +02:00
}