зеркало из https://github.com/electron/electron.git
22 строки
411 B
JSON
22 строки
411 B
JSON
{
|
|
"extends": "standard",
|
|
"parser": "typescript-eslint-parser",
|
|
"plugins": ["typescript"],
|
|
"env": {
|
|
"browser": true
|
|
},
|
|
"rules": {
|
|
"no-var": "error",
|
|
"no-unused-vars": 0,
|
|
"no-global-assign": 0,
|
|
"typescript/no-unused-vars": "error",
|
|
"prefer-const": ["error", {
|
|
"destructuring": "all"
|
|
}]
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "module"
|
|
}
|
|
}
|