Skip to content

Commit

Permalink
Bumped Electron from 4.1.1 to 11.0.1 (#2226)
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
tonyanziano authored Feb 3, 2021
1 parent c47786f commit cc523d3
Show file tree
Hide file tree
Showing 151 changed files with 16,789 additions and 18,716 deletions.
20 changes: 11 additions & 9 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module.exports = {
extends: ['eslint:recommended', 'plugin:typescript/recommended', 'plugin:prettier/recommended'],
plugins: ['import', 'notice'],
extends: ['plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended'],
parser: '@typescript-eslint/parser',
plugins: ['import', 'notice', '@typescript-eslint'],
env: {
browser: true,
es6: true,
Expand Down Expand Up @@ -33,13 +34,13 @@ module.exports = {
],

// plugin: typescript
'typescript/explicit-function-return-type': 'off',
'typescript/explicit-member-accessibility': 'off',
'typescript/indent': 'off',
'typescript/no-empty-interface': 'warn',
'typescript/no-object-literal-type-assertion': 'off',
'typescript/no-parameter-properties': 'off',
'typescript/no-use-before-define': ['error', { functions: false, classes: false }],
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-member-accessibility': 'off',
'@typescript-eslint/indent': 'off',
'@typescript-eslint/no-empty-interface': 'warn',
'@typescript-eslint/no-object-literal-type-assertion': 'off',
'@typescript-eslint/no-parameter-properties': 'off',
'@typescript-eslint/no-use-before-define': ['error', { functions: false, classes: false }],
},
overrides: [
{
Expand All @@ -54,6 +55,7 @@ module.exports = {
rules: {
'typescript/class-name-casing': 'off',
'typescript/no-explicit-any': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
},
},
],
Expand Down
Loading

0 comments on commit cc523d3

Please sign in to comment.