mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-06-13 07:10:26 +08:00
19 lines
413 B
JSON
19 lines
413 B
JSON
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"ignorePatterns": [
|
|
"webpack.config.js"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/semi": "warn",
|
|
"semi": "off",
|
|
"@typescript-eslint/no-var-requires": 0
|
|
}
|
|
} |