status/.eslintrc

38 lines
883 B
Plaintext
Raw Normal View History

2019-09-16 14:53:19 +02:00
{
2019-12-07 23:02:18 +01:00
"extends": ["eslint:recommended", "prettier"],
2019-09-16 14:53:19 +02:00
"env": {
"es6": true,
"browser": true,
2019-12-07 23:02:18 +01:00
"node": true
2019-09-16 14:53:19 +02:00
},
"settings": {
"react": {
2019-12-07 23:02:18 +01:00
"version": "detect"
2019-09-16 14:53:19 +02:00
}
2019-12-07 23:02:18 +01:00
},
"overrides": [
{
"files": ["**/*.ts", "**/*.tsx"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": ["./tsconfig.json"]
},
"extends": [
"oceanprotocol",
"oceanprotocol/react",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"prettier/react",
"prettier/standard",
"prettier/@typescript-eslint"
],
"plugins": ["@typescript-eslint", "prettier"],
"rules": {
"react/prop-types": "off",
"@typescript-eslint/explicit-function-return-type": "off"
}
}
]
2019-09-16 14:53:19 +02:00
}