nocobase/.eslintrc

22 lines
360 B
Plaintext
Raw Normal View History

2020-10-24 07:34:43 +00:00
{
"parser": "@typescript-eslint/parser",
"env": {
"node": true
},
"globals": {
"sleep": true,
"prettyFormat": true
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
2023-04-19 15:01:03 +00:00
},
"plugins": [
"react-hooks"
],
"rules": {
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
2020-10-24 07:34:43 +00:00
}
2023-04-19 15:01:03 +00:00
}