mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-03-02 02:53:01 +08:00
Update Typescript, eslint dependencies to reflect TS 3.7+ requirement
This commit is contained in:
parent
38e89c9d20
commit
b13bcd5c0a
3 changed files with 1044 additions and 538 deletions
13
.eslintrc
13
.eslintrc
|
@ -18,8 +18,13 @@
|
|||
"node": true,
|
||||
"jasmine": true
|
||||
},
|
||||
"plugins": ["@typescript-eslint"],
|
||||
"extends": ["plugin:@typescript-eslint/recommended", "prettier", "prettier/@typescript-eslint"],
|
||||
"plugins": ["react"],
|
||||
"extends": [
|
||||
"eslint:recommended",
|
||||
"plugin:@typescript-eslint/eslint-recommended",
|
||||
"plugin:@typescript-eslint/recommended",
|
||||
"prettier",
|
||||
"prettier/@typescript-eslint"],
|
||||
"rules": {
|
||||
"no-cond-assign": 0,
|
||||
"@typescript-eslint/explicit-member-accessibility": 0,
|
||||
|
@ -36,7 +41,9 @@
|
|||
"@typescript-eslint/class-name-casing": 0,
|
||||
"@typescript-eslint/prefer-namespace-keyword": 0,
|
||||
"@typescript-eslint/no-object-literal-type-assertion": 0,
|
||||
"@typescript-eslint/array-type": 0
|
||||
"@typescript-eslint/array-type": 0,
|
||||
"@typescript-eslint/explicit-module-boundary-types": 0,
|
||||
"@typescript-eslint/no-empty-function": 0
|
||||
},
|
||||
"settings": {
|
||||
"import/core-modules": [
|
||||
|
|
1556
package-lock.json
generated
1556
package-lock.json
generated
File diff suppressed because it is too large
Load diff
13
package.json
13
package.json
|
@ -51,18 +51,17 @@
|
|||
"@types/underscore": "^1.8.9",
|
||||
"@types/underscore.string": "^0.0.33",
|
||||
"@types/uuid": "^3.4.4",
|
||||
"@typescript-eslint/eslint-plugin": "^1.4.2",
|
||||
"@typescript-eslint/parser": "^1.4.2",
|
||||
"@typescript-eslint/eslint-plugin": "^4.7.0",
|
||||
"@typescript-eslint/parser": "^4.7.0",
|
||||
"chalk": "1.x.x",
|
||||
"devtron": "^1.4.0",
|
||||
"electron": "4.2.12",
|
||||
"electron-installer-dmg": "0.2.x",
|
||||
"electron-packager": "14.2.x",
|
||||
"electron-winstaller": "2.x.x",
|
||||
"eslint": "^5.15.0",
|
||||
"eslint-config-prettier": "^4.1.0",
|
||||
"eslint-plugin-react": "^7.12.4",
|
||||
"eslint-plugin-typescript": "^0.14.0",
|
||||
"eslint": "7.13.0",
|
||||
"eslint-config-prettier": "7.2.0",
|
||||
"eslint-plugin-react": "7.22.0",
|
||||
"fs-extra": "2.x.x",
|
||||
"fs-plus": "2.x.x",
|
||||
"gitbook-cli": "^2.3.2",
|
||||
|
@ -90,7 +89,7 @@
|
|||
"rimraf": "^2.6.1",
|
||||
"targz": "^1.0.1",
|
||||
"temp": "0.8.x",
|
||||
"typescript": "^3.3.3333",
|
||||
"typescript": "3.9.7",
|
||||
"underscore": "1.8.x"
|
||||
},
|
||||
"scripts": {
|
||||
|
|
Loading…
Reference in a new issue