Skip to content

Commit

Permalink
chore: update dev-deps. Modify eslintrc with new version
Browse files Browse the repository at this point in the history
  • Loading branch information
nebrelbug committed Sep 1, 2020
1 parent 572a643 commit 20f9a3e
Show file tree
Hide file tree
Showing 3 changed files with 1,594 additions and 1,148 deletions.
13 changes: 7 additions & 6 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
module.exports = {
env: {
browser: true,
node: true
node: true,
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
// 'standard-with-typescript',
'prettier',
'prettier/@typescript-eslint'
'prettier/@typescript-eslint',
],
ignorePatterns: [
'node_modules',
Expand All @@ -18,20 +18,21 @@ module.exports = {
'coverage',
'browser-tests',
'tools',
'rollup.config.ts'
'rollup.config.ts',
],
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.eslint.json',
sourceType: 'module'
sourceType: 'module',
},
plugins: ['@typescript-eslint'],
rules: {
'no-var': 0,
'@typescript-eslint/no-var-requires': 0,
'prefer-const': 0,
'@typescript-eslint/no-use-before-define': 0,
'@typescript-eslint/explicit-function-return-type': 0
'@typescript-eslint/explicit-function-return-type': 0,
'@typescript-eslint/ban-types': 0, // Otherwise TS won't let us use Function and object
},
settings: {}
settings: {},
}
64 changes: 32 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,46 +103,46 @@
]
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/jest": "^25.1.0",
"@types/node": "^13.11.0",
"@typescript-eslint/eslint-plugin": "2",
"@typescript-eslint/parser": "^2.26.0",
"colors": "^1.3.2",
"commitizen": "^4.0.3",
"coveralls": "^3.0.2",
"cross-env": "^7.0.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard-with-typescript": "^15.0.0",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@types/jest": "^26.0.12",
"@types/node": "^14.6.2",
"@typescript-eslint/eslint-plugin": "4",
"@typescript-eslint/parser": "^4.0.1",
"colors": "^1.4.0",
"commitizen": "^4.2.1",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "4",
"eslint-plugin-standard": "4",
"husky": "^4.2.1",
"jest": "^25.1.0",
"jest-config": "^25.1.0",
"lint-staged": "^10.1.3",
"prettier-standard": "^16.1.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"jest-config": "^26.4.2",
"lint-staged": "^10.2.13",
"prettier-standard": "^16.4.1",
"prompt": "^1.0.0",
"replace-in-file": "^5.0.2",
"rimraf": "^3.0.0",
"rollup": "^2.4.0",
"replace-in-file": "^6.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.26.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-prettier": "^2.0.0",
"rollup-plugin-size-snapshot": "^0.10.0",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-typescript2": "^0.27.0",
"shelljs": "^0.8.3",
"travis-deploy-once": "^5.0.9",
"ts-jest": "^25.1.0",
"ts-node": "^8.7.0",
"typedoc": "^0.17.4",
"typescript": "^3.0.3"
"rollup-plugin-prettier": "^2.1.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.1",
"rollup-plugin-typescript2": "^0.27.2",
"shelljs": "^0.8.4",
"travis-deploy-once": "^5.0.11",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typedoc": "^0.19.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
Expand Down
Loading

0 comments on commit 20f9a3e

Please sign in to comment.