mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-07-18 09:44:43 +02:00
20 lines
453 B
JSON
20 lines
453 B
JSON
|
{
|
||
|
"root": true,
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 6,
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"plugins": [
|
||
|
"@typescript-eslint"
|
||
|
],
|
||
|
"rules": {
|
||
|
"@typescript-eslint/class-name-casing": "warn",
|
||
|
"@typescript-eslint/semi": "warn",
|
||
|
"curly": "warn",
|
||
|
"eqeqeq": "warn",
|
||
|
"no-throw-literal": "warn",
|
||
|
"semi": "off"
|
||
|
}
|
||
|
}
|