blob: c4dd0de0ab28cbe69c74d19394a440e38f5e5bab [file] [log] [blame]
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"jsdoc"
],
"rules": {
"@typescript-eslint/naming-convention": "warn",
"@typescript-eslint/semi": "warn",
"jsdoc/require-jsdoc": "warn",
"jsdoc/require-description": "warn",
"curly": "warn",
"quotes": [
2,
"single"
],
"eqeqeq": "warn",
"indent": [
"warn",
2,
{
"SwitchCase": 1
}
],
"max-len": [
"warn",
100
],
"no-throw-literal": "warn",
"require-await": "error",
"semi": "off"
},
"ignorePatterns": [
"out",
"dist",
"webviews/logging/parsing/filters_parser.gen.js",
"**/*.d.ts"
]
}