commons/.eslintrc

29 lines
736 B
Plaintext
Raw Normal View History

2019-02-05 15:53:35 +01:00
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
2019-02-05 16:41:00 +01:00
"project": "./tsconfig.json"
2019-02-05 15:53:35 +01:00
},
"extends": [
"oceanprotocol",
"oceanprotocol/react",
"prettier/react",
2019-02-05 16:41:00 +01:00
"prettier/standard",
2019-02-07 11:28:04 +01:00
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint"
2019-02-05 15:53:35 +01:00
],
2019-02-05 16:41:00 +01:00
"plugins": ["@typescript-eslint", "prettier"],
2019-02-05 15:53:35 +01:00
"rules": {
2019-02-05 16:41:00 +01:00
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/member-delimiter-style": [
"error",
{ "multiline": { "delimiter": "none" } }
2019-02-05 15:53:35 +01:00
]
2019-02-05 17:05:28 +01:00
},
"env": {
2019-02-07 11:28:04 +01:00
"es6": true,
"browser": true,
2019-02-05 17:05:28 +01:00
"jest": true
2019-02-05 15:53:35 +01:00
}
}