30 lines
513 B
JSON
30 lines
513 B
JSON
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"sourceType": "module",
|
|
"ecmaVersion": 6,
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
}
|
|
},
|
|
"plugins": [
|
|
"@theia",
|
|
"@typescript-eslint",
|
|
"@typescript-eslint/tslint",
|
|
"import",
|
|
"no-null",
|
|
"eslint-plugin-deprecation",
|
|
"eslint-plugin-react",
|
|
"eslint-plugin-no-unsanitized"
|
|
],
|
|
"env": {
|
|
"browser": true,
|
|
"mocha": true,
|
|
"node": true
|
|
},
|
|
"ignorePatterns": [
|
|
"node_modules",
|
|
"lib"
|
|
]
|
|
}
|