cmake-intellisence/.eslintrc.json

34 lines
717 B
JSON
Raw Permalink Normal View History

2022-08-19 16:13:03 +08:00
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
2022-12-02 16:26:08 +08:00
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "typeLike",
"format": [
"PascalCase"
]
}
],
2022-08-19 16:13:03 +08:00
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
2022-12-02 16:26:08 +08:00
"semi": "off",
"camelcase": "off"
2022-08-19 16:13:03 +08:00
},
"ignorePatterns": [
"out",
"dist",
"**/*.d.ts"
]
}