Skip to content
This repository was archived by the owner on Jan 5, 2026. It is now read-only.

Commit cc523d3

Browse files
authored
Bumped Electron from 4.1.1 to 11.0.1 (#2226)
* Bumped Electron to v11 and Typescript to 4.1.3 * Fixed cross-process state events to be IPC safe * Bumped keytar to 7.3.0 * Bumped electron to 11.0.1 * Bumped linting dependencies (ts / eslint) * Linting fixes * Fixed tests.
1 parent c47786f commit cc523d3

151 files changed

Lines changed: 16789 additions & 18716 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc.js

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module.exports = {
2-
extends: ['eslint:recommended', 'plugin:typescript/recommended', 'plugin:prettier/recommended'],
3-
plugins: ['import', 'notice'],
2+
extends: ['plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended'],
3+
parser: '@typescript-eslint/parser',
4+
plugins: ['import', 'notice', '@typescript-eslint'],
45
env: {
56
browser: true,
67
es6: true,
@@ -33,13 +34,13 @@ module.exports = {
3334
],
3435

3536
// plugin: typescript
36-
'typescript/explicit-function-return-type': 'off',
37-
'typescript/explicit-member-accessibility': 'off',
38-
'typescript/indent': 'off',
39-
'typescript/no-empty-interface': 'warn',
40-
'typescript/no-object-literal-type-assertion': 'off',
41-
'typescript/no-parameter-properties': 'off',
42-
'typescript/no-use-before-define': ['error', { functions: false, classes: false }],
37+
'@typescript-eslint/explicit-function-return-type': 'off',
38+
'@typescript-eslint/explicit-member-accessibility': 'off',
39+
'@typescript-eslint/indent': 'off',
40+
'@typescript-eslint/no-empty-interface': 'warn',
41+
'@typescript-eslint/no-object-literal-type-assertion': 'off',
42+
'@typescript-eslint/no-parameter-properties': 'off',
43+
'@typescript-eslint/no-use-before-define': ['error', { functions: false, classes: false }],
4344
},
4445
overrides: [
4546
{
@@ -54,6 +55,7 @@ module.exports = {
5455
rules: {
5556
'typescript/class-name-casing': 'off',
5657
'typescript/no-explicit-any': 'off',
58+
'@typescript-eslint/ban-ts-comment': 'off',
5759
},
5860
},
5961
],

0 commit comments

Comments
 (0)