update dependencies and eslint config

master
Laura Liberda 2021-02-01 15:40:04 +01:00
parent 5f24ff76c4
commit 1d2bb6317e
4 changed files with 1740 additions and 917 deletions

View File

@ -3,7 +3,7 @@ module.exports = {
es6: true,
node: true,
},
extends: ['airbnb-base', 'prettier'],
extends: ['airbnb-typescript/base', 'prettier'],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
@ -15,8 +15,5 @@ module.exports = {
},
plugins: ['@typescript-eslint', 'prettier'],
rules: {
'no-unused-vars': 'off', // broken with typescript
'import/no-unresolved': 'off', // conflicting with typescript
'import/extensions': 'off', // conflicting with typescript
},
};

View File

@ -1,5 +1,5 @@
default:
image: node:14-alpine
image: node:15-alpine
before_script:
- yarn install

View File

@ -43,28 +43,26 @@
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.1",
"appdata-path": "^1.0.0",
"fs-extra": "^9.0.1",
"got": "^11.5.1",
"graphql": "^15.3.0",
"simple-git": "^2.15.0"
"fs-extra": "^9.1.0",
"got": "^11.8.1",
"graphql": "^15.5.0",
"simple-git": "^2.31.0"
},
"devDependencies": {
"@graphql-codegen/cli": "1.17.6",
"@graphql-codegen/introspection": "1.17.6",
"@graphql-codegen/typescript": "1.17.6",
"@graphql-codegen/typescript-resolvers": "1.17.6",
"@graphql-codegen/cli": "^1.20.1",
"@graphql-codegen/introspection": "^1.18.1",
"@graphql-codegen/typescript": "^1.20.2",
"@oclif/dev-cli": "^1.26.0",
"@types/fs-extra": "^9.0.1",
"@types/iarna__toml": "^2.0.0",
"@types/js-yaml": "^3.12.5",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
"@types/fs-extra": "^9.0.6",
"@types/iarna__toml": "^2.0.1",
"eslint": "^7.19.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}

2612
yarn.lock

File diff suppressed because it is too large Load Diff