nocobase/.eslintrc

21 lines
317 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": {
2023-04-21 02:07:14 +00:00
"react-hooks/rules-of-hooks": "error"
2020-10-24 07:34:43 +00:00
}
2023-04-19 15:01:03 +00:00
}