docs/.eslintrc

19 lines
336 B
Plaintext
Raw Normal View History

2018-11-07 12:24:53 +01:00
{
2021-05-25 14:29:00 +02:00
"parser": "babel-eslint",
2021-01-26 17:39:08 +01:00
"extends": [
"oceanprotocol",
"oceanprotocol/react",
2021-02-23 16:19:31 +01:00
"plugin:prettier/recommended"
2021-01-26 17:39:08 +01:00
],
"plugins": ["prettier"],
"rules": {
"prettier/prettier": "error"
},
2021-05-25 14:29:00 +02:00
"env": { "browser": true, "es6": true, "node": true },
2021-01-26 17:39:08 +01:00
"settings": {
"react": {
"version": "detect"
2019-08-20 11:42:35 +02:00
}
2021-01-26 17:39:08 +01:00
}
2018-11-07 12:24:53 +01:00
}