20 строки
407 B
JSON
20 строки
407 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true,
|
|
"node": true
|
|
},
|
|
"extends": ["eslint:recommended", "google"],
|
|
"parserOptions": {
|
|
"ecmaVersion": 12,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
// Indent files with prettier
|
|
"indent": ["off"],
|
|
// Allow triple slash comments
|
|
"spaced-comment": ["error", "always", {"markers": ["/"]}],
|
|
"operator-linebreak": ["off"]
|
|
}
|
|
}
|