Skip to content

Commit 6cb1d4d

Browse files
committed
chore: update dependencies
1 parent 50004fd commit 6cb1d4d

File tree

4 files changed

+2368
-1721
lines changed

4 files changed

+2368
-1721
lines changed

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ end_of_line = lf
55
tab_width = 2
66
trim_trailing_whitespace = true
77
insert_final_newline = true
8+
max_line_length = 90

.eslintrc

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,30 @@
44
"project": "./tsconfig.json",
55
"tsconfigRootDir": "./"
66
},
7-
"plugins": ["@typescript-eslint"],
7+
"plugins": ["@typescript-eslint", "prettier"],
88
"extends": [
99
"eslint:recommended",
1010
"plugin:@typescript-eslint/eslint-recommended",
1111
"plugin:@typescript-eslint/recommended",
1212
"plugin:@typescript-eslint/recommended-requiring-type-checking",
13-
// the following two lines *dis*able rules in eslint that conflict with prettier:
14-
"prettier",
15-
"prettier/@typescript-eslint"
13+
"prettier"
1614
],
1715
"env": {
1816
"node": true,
1917
"es6": true
2018
},
2119
"rules": {
2220
// more accurate and less maintenance to let the type be deduced by TypeScript
23-
"@typescript-eslint/explicit-function-return-type": 0,
21+
"@typescript-eslint/explicit-function-return-type": "off",
2422
// “hoisting” is not an issue with ES6
25-
"@typescript-eslint/no-use-before-define": 0,
23+
"@typescript-eslint/no-use-before-define": "off",
2624
// database model properties are never camelcase
27-
"@typescript-eslint/camelcase": 0,
25+
"@typescript-eslint/camelcase": "off",
2826
// false positives in idiomatic code https://github.com/eslint/eslint/issues/11899
29-
"require-atomic-updates": 0,
27+
"require-atomic-updates": "off",
3028
// makes code less clear, no evidence it’s faster: https://bit.ly/2kAohRM
31-
"@typescript-eslint/prefer-regexp-exec": 0,
29+
"@typescript-eslint/prefer-regexp-exec": "off",
3230
// for this specific use case, we don’t prefer includes
33-
"@typescript-eslint/prefer-includes": 0
31+
"@typescript-eslint/prefer-includes": "off"
3432
}
3533
}

0 commit comments

Comments
 (0)