Skip to content

Commit d79c98c

Browse files
authored
feat(deps): Update dependencies 2023.06.21 (#86)
1 parent f1002ed commit d79c98c

22 files changed

Lines changed: 3510 additions & 3041 deletions

File tree

.eslintrc.json

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,16 @@
2222
"@typescript-eslint",
2323
"eslint-plugin-import",
2424
"eslint-plugin-jsdoc",
25-
"etc"
25+
"etc",
26+
"sonarjs"
2627
],
2728
"extends": [
2829
"eslint:recommended",
2930
"plugin:@typescript-eslint/recommended",
3031
"plugin:@typescript-eslint/recommended-requiring-type-checking",
3132
"plugin:etc/recommended",
32-
"plugin:import/typescript"
33+
"plugin:import/typescript",
34+
"plugin:sonarjs/recommended"
3335
],
3436
"overrides": [{
3537
"files": "*.ts?(x)",
@@ -153,7 +155,10 @@
153155
"func-style": ["error", "declaration", { "allowArrowFunctions": true }],
154156
"import/newline-after-import": "error",
155157
"import/no-absolute-path": "error",
156-
"import/no-cycle": ["error", { "ignoreExternal": true }],
158+
"import/no-cycle": ["error", {
159+
"allowUnsafeDynamicCyclicDependency": true,
160+
"ignoreExternal": true
161+
}],
157162
"import/no-duplicates": "error",
158163
"import/no-import-module-exports": "error",
159164
"import/no-namespace": "error",
@@ -170,8 +175,7 @@
170175
}],
171176
"jsdoc/check-alignment": "error",
172177
"jsdoc/check-indentation": ["error", { "excludeTags": ["example", "param", "returns"] }],
173-
"jsdoc/newline-after-description": "error",
174-
"jsx-quotes": "error",
178+
"jsdoc/tag-lines": ["error", "any", { "startLines": 1 }],
175179
"keyword-spacing": "error",
176180
"linebreak-style": "error",
177181
"max-classes-per-file": ["error", 1],
@@ -212,6 +216,9 @@
212216
"radix": "error",
213217
"rest-spread-spacing": "error",
214218
"semi-spacing": "error",
219+
"sonarjs/cognitive-complexity": "off",
220+
"sonarjs/no-duplicate-string": "off",
221+
"sonarjs/no-inverted-boolean-check": "error",
215222
"sort-keys": "error",
216223
"space-before-blocks": "error",
217224
"space-in-parens": "error",

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
- 17
2727
- 18
2828
- 19
29+
- 20
2930

3031
steps:
3132
- uses: actions/checkout@v3

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
19.6.0
1+
20.3.1

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Lines changed: 111 additions & 111 deletions
Large diffs are not rendered by default.

.yarn/releases/yarn-3.4.1.cjs

Lines changed: 0 additions & 873 deletions
This file was deleted.

.yarn/releases/yarn-3.6.0.cjs

Lines changed: 874 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ plugins:
66
- path: .yarn/plugins/@yarnpkg/plugin-engines.cjs
77
spec: "https://github.com/devoto13/yarn-plugin-engines/main/bundles/%40yarnpkg/plugin-engines.js"
88

9-
yarnPath: .yarn/releases/yarn-3.4.1.cjs
9+
yarnPath: .yarn/releases/yarn-3.6.0.cjs

examples/jest/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
"devDependencies": {
99
"@examples/symbol-plugin": "workspace:^",
1010
"@stackbuilders/assertive-ts": "workspace:^",
11-
"@types/jest": "^29.4.0",
12-
"@types/node": "^18.14.2",
13-
"jest": "^29.4.3",
14-
"ts-jest": "^29.0.5",
11+
"@types/jest": "^29.5.2",
12+
"@types/node": "^20.3.2",
13+
"jest": "^29.5.0",
14+
"ts-jest": "^29.1.0",
1515
"ts-node": "^10.9.1",
16-
"typescript": "^4.9.5"
16+
"typescript": "^5.1.6"
1717
}
1818
}

examples/mocha/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"@examples/symbol-plugin": "workspace:^",
1010
"@stackbuilders/assertive-ts": "workspace:^",
1111
"@types/mocha": "^10.0.1",
12-
"@types/node": "^18.14.2",
12+
"@types/node": "^20.3.2",
1313
"mocha": "^10.2.0",
1414
"ts-node": "^10.9.1",
15-
"typescript": "^4.9.5"
15+
"typescript": "^5.1.6"
1616
}
1717
}

examples/symbolPlugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"devDependencies": {
1111
"@stackbuilders/assertive-ts": "workspace:^",
12-
"typescript": "^4.9.5"
12+
"typescript": "^5.1.6"
1313
},
1414
"peerDependencies": {
1515
"@stackbuilders/assertive-ts": "*"

0 commit comments

Comments
 (0)