mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 11:36:42 +00:00
21 lines
317 B
Plaintext
Executable File
21 lines
317 B
Plaintext
Executable File
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"globals": {
|
|
"sleep": true,
|
|
"prettyFormat": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"react-hooks"
|
|
],
|
|
"rules": {
|
|
"react-hooks/rules-of-hooks": "error"
|
|
}
|
|
}
|