File tree 18 files changed +1837
-1724
lines changed
eslint-plugin-example-typed-linting
flat-config-disable-type-checked
flat-config-typed-tsconfig
typescript-estree-standalone
18 files changed +1837
-1724
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import tseslint from 'typescript-eslint';
13
13
export default tseslint .config (
14
14
{ ignores: [" lib" ] },
15
15
eslint .configs .recommended ,
16
- ... tseslint .configs .recommendedTypeChecked ,
16
+ tseslint .configs .recommendedTypeChecked ,
17
17
exampleTypedLinting .configs .recommended // 👈
18
18
{
19
19
languageOptions: {
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import tseslint from 'typescript-eslint';
5
5
export default tseslint . config (
6
6
{ ignores : [ "lib" ] } ,
7
7
eslint . configs . recommended ,
8
- ... tseslint . configs . recommendedTypeChecked ,
8
+ tseslint . configs . recommendedTypeChecked ,
9
9
eslintPlugin . configs [ 'flat/recommended' ] ,
10
10
{
11
11
languageOptions : {
Original file line number Diff line number Diff line change 3
3
"@typescript-eslint/utils" : " 8.18.0"
4
4
},
5
5
"devDependencies" : {
6
- "@eslint/js" : " ^9.8 .0" ,
7
- "@types/eslint" : " ^9.6.0 " ,
6
+ "@eslint/js" : " ^9.16 .0" ,
7
+ "@types/eslint" : " ^9.6.1 " ,
8
8
"@types/eslint__js" : " ^8.42.3" ,
9
- "@types/node" : " ^22.0 .2" ,
9
+ "@types/node" : " ^22.10 .2" ,
10
10
"@typescript-eslint/rule-tester" : " 8.18.0" ,
11
- "eslint" : " ^9.8 .0" ,
12
- "eslint-doc-generator" : " ^1.7.1 " ,
13
- "eslint-plugin-eslint-plugin" : " ^6.2.0 " ,
14
- "typescript" : " ^5.5.4 " ,
11
+ "eslint" : " ^9.16 .0" ,
12
+ "eslint-doc-generator" : " ^2.0.0 " ,
13
+ "eslint-plugin-eslint-plugin" : " ^6.3.2 " ,
14
+ "typescript" : " ^5.7.2 " ,
15
15
"typescript-eslint" : " 8.18.0" ,
16
- "vitest" : " ^2.0.4 "
16
+ "vitest" : " ^2.1.8 "
17
17
},
18
18
"exports" : {
19
19
"." : {
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ const unused = true;
7
7
8
8
export default tseslint . config (
9
9
eslint . configs . recommended ,
10
- ... tseslint . configs . recommendedTypeChecked ,
10
+ tseslint . configs . recommendedTypeChecked ,
11
11
{
12
12
languageOptions : {
13
13
parserOptions : {
@@ -16,7 +16,7 @@ export default tseslint.config(
16
16
} ,
17
17
} ,
18
18
{
19
+ extends : [ tseslint . configs . disableTypeChecked ] ,
19
20
files : [ "*.js" ] ,
20
- ...tseslint . configs . disableTypeChecked ,
21
21
}
22
22
) ;
Original file line number Diff line number Diff line change 10
10
},
11
11
"license" : " MIT" ,
12
12
"devDependencies" : {
13
- "@types/eslint" : " ^8.56.2 " ,
14
- "eslint" : " ^8.56 .0" ,
15
- "typescript" : " ^5.3.3 " ,
16
- "typescript-eslint" : " ^7.0.1 "
13
+ "@types/eslint" : " ^9.6.1 " ,
14
+ "eslint" : " ^9.16 .0" ,
15
+ "typescript" : " ^5.7.2 " ,
16
+ "typescript-eslint" : " ^8.18.0 "
17
17
},
18
18
"scripts" : {
19
19
"lint" : " eslint ." ,
Original file line number Diff line number Diff line change 2
2
"compilerOptions" : {
3
3
"module" : " NodeNext" ,
4
4
"moduleResolution" : " NodeNext" ,
5
+ "noEmit" : true ,
5
6
"strict" : true
6
7
},
7
8
"include" : [" src" ]
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export async function unecessarilyAsync() {
9
9
10
10
export default tseslint . config (
11
11
eslint . configs . recommended ,
12
- ... tseslint . configs . recommendedTypeChecked ,
12
+ tseslint . configs . recommendedTypeChecked ,
13
13
{
14
14
languageOptions : {
15
15
parserOptions : {
Original file line number Diff line number Diff line change 10
10
},
11
11
"license" : " MIT" ,
12
12
"devDependencies" : {
13
- "@types/eslint" : " ^8.56.2 " ,
13
+ "@types/eslint" : " ^9.6.1 " ,
14
14
"@types/eslint__js" : " ^8.42.3" ,
15
- "eslint" : " ^8.56 .0" ,
16
- "typescript" : " ^5.3.3 " ,
17
- "typescript-eslint" : " ^7.0.1 "
15
+ "eslint" : " ^9.16 .0" ,
16
+ "typescript" : " ^5.7.2 " ,
17
+ "typescript-eslint" : " ^8.18.0 "
18
18
},
19
19
"scripts" : {
20
20
"lint" : " eslint ." ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"extends" : " ./tsconfig.json" ,
3
3
"compilerOptions" : {
4
- "allowJs" : true ,
5
- "noEmit" : true
4
+ "allowJs" : true
6
5
},
7
6
"include" : [" ." ]
8
7
}
Original file line number Diff line number Diff line change 2
2
"compilerOptions" : {
3
3
"module" : " NodeNext" ,
4
4
"moduleResolution" : " NodeNext" ,
5
+ "noEmit" : true ,
5
6
"strict" : true
6
7
},
7
8
"include" : [" src" ]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import tseslint from "typescript-eslint";
5
5
6
6
export default tseslint . config (
7
7
eslint . configs . recommended ,
8
- ... tseslint . configs . recommendedTypeChecked ,
8
+ tseslint . configs . recommendedTypeChecked ,
9
9
{
10
10
languageOptions : {
11
11
parserOptions : {
Original file line number Diff line number Diff line change 10
10
},
11
11
"license" : " MIT" ,
12
12
"devDependencies" : {
13
- "@types/eslint" : " ^8.56.2 " ,
14
- "eslint" : " ^8.56 .0" ,
15
- "typescript" : " ^5.3.3 " ,
16
- "typescript-eslint" : " ^7.0.1 "
13
+ "@types/eslint" : " ^9.6.1 " ,
14
+ "eslint" : " ^9.16 .0" ,
15
+ "typescript" : " ^5.7.2 " ,
16
+ "typescript-eslint" : " ^8.18.0 "
17
17
},
18
18
"scripts" : {
19
19
"lint" : " eslint src" ,
Original file line number Diff line number Diff line change @@ -5,5 +5,5 @@ import tseslint from "typescript-eslint";
5
5
6
6
export default tseslint . config (
7
7
eslint . configs . recommended ,
8
- ... tseslint . configs . recommended
8
+ tseslint . configs . recommended
9
9
) ;
Original file line number Diff line number Diff line change 10
10
},
11
11
"license" : " MIT" ,
12
12
"devDependencies" : {
13
- "typescript-eslint" : " ^7.0.1 " ,
14
- "typescript" : " ^5.3.3 " ,
15
- "eslint" : " ^8.56 .0"
13
+ "typescript-eslint" : " ^8.18.0 " ,
14
+ "typescript" : " ^5.7.2 " ,
15
+ "eslint" : " ^9.16 .0"
16
16
},
17
17
"scripts" : {
18
18
"lint" : " eslint src" ,
Original file line number Diff line number Diff line change 2
2
"compilerOptions" : {
3
3
"module" : " NodeNext" ,
4
4
"moduleResolution" : " NodeNext" ,
5
+ "noEmit" : true ,
5
6
"strict" : true
6
7
},
7
8
"include" : [" src" ]
Original file line number Diff line number Diff line change 10
10
},
11
11
"license" : " MIT" ,
12
12
"dependencies" : {
13
- "@typescript-eslint/parser" : " ^6.19.1 " ,
14
- "@typescript-eslint/utils" : " ^6.19.1 " ,
15
- "eslint" : " ^8.56 .0" ,
16
- "typescript" : " ^5.3.3 "
13
+ "@typescript-eslint/parser" : " ^8.18.0 " ,
14
+ "@typescript-eslint/utils" : " ^8.18.0 " ,
15
+ "eslint" : " ^9.16 .0" ,
16
+ "typescript" : " ^5.7.2 "
17
17
},
18
18
"devDependencies" : {
19
- "@types/eslint" : " ^8.56.2 " ,
20
- "tsx" : " ^4.7.0 "
19
+ "@types/eslint" : " ^9.6.1 " ,
20
+ "tsx" : " ^4.19.2 "
21
21
},
22
22
"scripts" : {
23
23
"example" : " tsx index.ts"
Original file line number Diff line number Diff line change 10
10
},
11
11
"license" : " MIT" ,
12
12
"dependencies" : {
13
- "@typescript-eslint/typescript-estree" : " ^6.19.1 " ,
14
- "ts-api-utils" : " ^1 .0.3 " ,
15
- "typescript" : " ^5.3.3 "
13
+ "@typescript-eslint/typescript-estree" : " ^8.18.0 " ,
14
+ "ts-api-utils" : " ^2 .0.0 " ,
15
+ "typescript" : " ^5.7.2 "
16
16
},
17
17
"devDependencies" : {
18
- "@types/node" : " ^20.11.6 " ,
19
- "tsx" : " ^4.7.0 "
18
+ "@types/node" : " ^22.10.2 " ,
19
+ "tsx" : " ^4.19.2 "
20
20
},
21
21
"scripts" : {
22
22
"example" : " tsx index.ts"
You can’t perform that action at this time.
0 commit comments