mirror of
https://github.com/oceanprotocol/ens-proxy.git
synced 2024-11-14 09:14:59 +01:00
17 lines
425 B
Plaintext
17 lines
425 B
Plaintext
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"project": ["./tsconfig.json"]
|
|
},
|
|
"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 }
|
|
}
|