32 lines
702 B
JSON
32 lines
702 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:import/recommended",
|
|
"plugin:import/electron",
|
|
"plugin:import/typescript"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"settings": {
|
|
"import/resolver": {
|
|
"node": {
|
|
"extensions": [".ts", ".tsx", ".js", ".jsx"]
|
|
}
|
|
}
|
|
},
|
|
"rules": {
|
|
"import/no-unresolved": ["error", {
|
|
"ignore": ["\\\\?asset$"]
|
|
}],
|
|
"@typescript-eslint/no-unused-vars": ["warn", {
|
|
"argsIgnorePattern": "^_",
|
|
"varsIgnorePattern": "^_"
|
|
}]
|
|
}
|
|
} |