mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 12:06:47 +00:00
17 lines
273 B
Plaintext
17 lines
273 B
Plaintext
|
{
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"env": {
|
||
|
"node": true
|
||
|
},
|
||
|
"globals": {
|
||
|
"sleep": true,
|
||
|
"prettyFormat": true
|
||
|
},
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 2018,
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"rules": {
|
||
|
// "quotes": ["error", "single"]
|
||
|
}
|
||
|
}
|