mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-03-28 17:42:40 +01:00
21 lines
575 B
JSON
21 lines
575 B
JSON
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint"],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"ignorePatterns": ["./**/*.js", "./webpack/*.config.js", "./e2e/*.ts"],
|
|
"rules": {
|
|
"no-throw-literal": "error",
|
|
"no-unused-expressions": "error",
|
|
"curly": "error",
|
|
"class-methods-use-this": "warn",
|
|
"no-console": "warn",
|
|
"@typescript-eslint/no-empty-interface": "off",
|
|
"no-extra-boolean-cast": "off"
|
|
}
|
|
}
|