mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
19 lines
349 B
Text
19 lines
349 B
Text
{
|
|
"env": {
|
|
"es6": true,
|
|
"node": true,
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module",
|
|
},
|
|
"rules": {
|
|
"indent": ["error", 4],
|
|
"semi": "error",
|
|
"no-console": 0,
|
|
"no-use-before-define": 0,
|
|
},
|
|
"extends": [
|
|
"eslint:recommended"
|
|
]
|
|
}
|