mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"project": [
|
|
"./tsconfig.json",
|
|
"./client/tsconfig.json",
|
|
"./server/tsconfig.json",
|
|
"./cypress/tsconfig.json"
|
|
]
|
|
},
|
|
"extends": [
|
|
"oceanprotocol",
|
|
"oceanprotocol/react",
|
|
"prettier/react",
|
|
"prettier/standard",
|
|
"plugin:prettier/recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier/@typescript-eslint",
|
|
"plugin:cypress/recommended"
|
|
],
|
|
"plugins": ["@typescript-eslint", "prettier", "cypress"],
|
|
"rules": {
|
|
"@typescript-eslint/explicit-function-return-type": 0,
|
|
"@typescript-eslint/member-delimiter-style": [
|
|
"error",
|
|
{ "multiline": { "delimiter": "none" } }
|
|
],
|
|
"@typescript-eslint/no-explicit-any": "off"
|
|
},
|
|
"env": {
|
|
"es6": true,
|
|
"browser": true,
|
|
"jest": true,
|
|
"cypress/globals": true
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "16.8"
|
|
}
|
|
}
|
|
}
|