mirror of
https://gitee.com/nocobase/nocobase.git
synced 2024-12-02 04:07:50 +08: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"]
|
||
|
}
|
||
|
}
|