Skip to content

Commit 8efdaa8

Browse files
committed
electron 27
1 parent 586744d commit 8efdaa8

File tree

4 files changed

+321
-1710
lines changed

4 files changed

+321
-1710
lines changed

.eslintrc

Lines changed: 0 additions & 24 deletions
This file was deleted.

.eslintrc.cjs

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
module.exports = {
2+
extends: [
3+
"eslint:recommended",
4+
"plugin:@typescript-eslint/eslint-recommended",
5+
"plugin:@typescript-eslint/recommended",
6+
"standard-with-typescript"
7+
],
8+
parser: '@typescript-eslint/parser',
9+
"plugins": [
10+
"@typescript-eslint"
11+
],
12+
root: true,
13+
rules: {
14+
"@typescript-eslint/no-explicit-any":"off",
15+
"@typescript-eslint/return-await": "off",
16+
"@typescript-eslint/no-this-alias": "off",
17+
"@typescript-eslint/no-var-requires": "off",
18+
"@typescript-eslint/no-unused-vars": "off",
19+
"@typescript-eslint/restrict-template-expressions": "off",
20+
"@typescript-eslint/no-misused-promises": "off",
21+
"@typescript-eslint/strict-boolean-expressions": "off",
22+
"@typescript-eslint/consistent-type-assertions": "off",
23+
"@typescript-eslint/no-extraneous-class": "off",
24+
"@typescript-eslint/no-dynamic-delete": "off",
25+
"no-this-assignment": "off",
26+
"no-async-promise-executor": "off",
27+
"valid-typeof": "off",
28+
"@typescript-eslint/consistent-type-imports":"off",
29+
"@typescript-eslint/ban-types":"off",
30+
"@typescript-eslint/prefer-ts-expect-error":"off"
31+
},
32+
};

0 commit comments

Comments
 (0)