Skip to content

Commit 96ca5d3

Browse files
author
Simon Mollweide
committed
fix: update dependencies
1 parent 0b2921b commit 96ca5d3

File tree

7 files changed

+383
-522
lines changed

7 files changed

+383
-522
lines changed

package-lock.json

+370-514
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@namics/eslint-config",
3-
"version": "9.0.2",
3+
"version": "9.0.3",
44
"description": "Default configurations for eslint",
55
"author": "Namics AG",
66
"contributors": [
@@ -50,16 +50,16 @@
5050
"typescript"
5151
],
5252
"devDependencies": {
53-
"@dash4/plugin-dependencies": "0.9.0",
54-
"@dash4/plugin-npm-scripts": "0.9.0",
55-
"@dash4/plugin-readme": "0.9.0",
56-
"@dash4/server": "0.9.0",
53+
"@dash4/plugin-dependencies": "0.9.2",
54+
"@dash4/plugin-npm-scripts": "0.9.2",
55+
"@dash4/plugin-readme": "0.9.2",
56+
"@dash4/server": "0.9.2",
5757
"@namics/prettier-config": "1.1.0",
5858
"@namics/ts-config": "1.0.1",
5959
"acorn": "8.0.4",
6060
"eslint": "7.13.0",
6161
"eslint-plugin-import": "2.22.1",
62-
"npm-check-updates": "9.2.4",
62+
"npm-check-updates": "10.2.1",
6363
"npm-run-all": "4.1.5",
6464
"prettier": "2.1.2",
6565
"typescript": "4.0.5"
@@ -70,8 +70,8 @@
7070
},
7171
"dependencies": {
7272
"@types/react": "16.9.56",
73-
"@typescript-eslint/eslint-plugin": "3.10.1",
74-
"@typescript-eslint/parser": "3.10.1",
73+
"@typescript-eslint/eslint-plugin": "4.8.1",
74+
"@typescript-eslint/parser": "4.8.1",
7575
"babel-eslint": "10.1.0",
7676
"eslint-plugin-jsx-a11y": "6.4.1",
7777
"eslint-plugin-react": "7.21.5",
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable @typescript-eslint/no-unused-vars */
12
(async () => {
23
type TReadOnly<TSomeType extends string> = {readonly [TKey in keyof TSomeType]: TSomeType[TKey]};
34
})();

test/typescript-disable-styles/__tests__/member-delimiter-style.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable @typescript-eslint/no-unused-vars */
12
interface IFoo {
23
// prettier-ignore
34
name: string,

test/typescript/rules/typescript/adjacent-overload-signatures.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// DESCRIPTION = Require that member overloads be consecutive (adjacent-overload-signatures from TSLint)
22
// STATUS = 2
33

4+
/* eslint-disable @typescript-eslint/no-unused-vars */
45
/* eslint @typescript-eslint/unified-signatures: 0*/
56

67
// <!START

test/typescript/rules/typescript/array-type.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// DESCRIPTION = Requires using either T[] or Array<T> for arrays (array-type)
22
// STATUS = 2
33

4+
/* eslint-disable @typescript-eslint/no-unused-vars */
45
/* eslint-disable @typescript-eslint/naming-convention */
56
/* eslint @typescript-eslint/no-type-alias: 0*/
67

test/typescript/rules/typescript/naming-convention.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// DESCRIPTION = Enforces naming conventions for everything across a codebase (naming-convention)
22
// STATUS = 2
33

4+
/* eslint-disable no-shadow */
45
/* eslint no-console: 0*/
56
/* eslint @typescript-eslint/no-unused-vars: 0*/
67
/* eslint-disable @typescript-eslint/no-empty-interface */

0 commit comments

Comments
 (0)