azure-powershell-migration/vscode-extension/.eslintrc.json

21 строка
453 B
JSON

{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/semi": "warn",
"curly": "warn",
"no-throw-literal": "warn",
"semi": "off"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
]
}