mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
26 lines
651 B
Plaintext
26 lines
651 B
Plaintext
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"project": "./tsconfig.json"
|
|
},
|
|
"extends": [
|
|
"oceanprotocol",
|
|
"oceanprotocol/react",
|
|
"plugin:prettier/recommended",
|
|
"prettier/react",
|
|
"prettier/standard",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"plugins": ["@typescript-eslint", "prettier"],
|
|
"rules": {
|
|
"@typescript-eslint/explicit-function-return-type": 0,
|
|
"@typescript-eslint/member-delimiter-style": [
|
|
"error",
|
|
{ "multiline": { "delimiter": "none" } }
|
|
]
|
|
},
|
|
"env": {
|
|
"jest": true
|
|
}
|
|
}
|