27 lines
540 B
JSON
27 lines
540 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2020": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:promise/recommended"
|
|
],
|
|
"globals": {
|
|
"ComponentFramework": true
|
|
},
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"@microsoft/power-apps",
|
|
"@typescript-eslint"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-unused-vars": "off"
|
|
}
|
|
}
|