mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-03-28 17:42:40 +01:00
18 lines
461 B
JSON
18 lines
461 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"
|
|
}
|
|
}
|