Skip to content

Commit c29ac66

Browse files
authoredJul 6, 2024··
feat: use ts-eslint beta (#520)
1 parent afe5836 commit c29ac66

File tree

7 files changed

+251
-80
lines changed

7 files changed

+251
-80
lines changed
 

‎eslint.config.ts

-5
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,3 @@ export default antfu(
3434
},
3535
},
3636
)
37-
.removeRules(
38-
'ts/no-unsafe-member-access',
39-
'ts/no-unsafe-argument',
40-
'ts/no-unsafe-assignment',
41-
)

‎package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@
9898
"dependencies": {
9999
"@antfu/install-pkg": "^0.3.3",
100100
"@clack/prompts": "^0.7.0",
101-
"@stylistic/eslint-plugin": "^2.3.0",
102-
"@typescript-eslint/eslint-plugin": "^7.15.0",
103-
"@typescript-eslint/parser": "^7.15.0",
101+
"@stylistic/eslint-plugin": "^2.6.0-beta.0",
102+
"@typescript-eslint/eslint-plugin": "8.0.0-alpha.34",
103+
"@typescript-eslint/parser": "8.0.0-alpha.34",
104104
"eslint-config-flat-gitignore": "^0.1.5",
105105
"eslint-flat-config-utils": "^0.2.5",
106106
"eslint-merge-processors": "^0.1.0",
@@ -117,7 +117,7 @@
117117
"eslint-plugin-regexp": "^2.6.0",
118118
"eslint-plugin-toml": "^0.11.1",
119119
"eslint-plugin-unicorn": "^54.0.0",
120-
"eslint-plugin-unused-imports": "^3.2.0",
120+
"eslint-plugin-unused-imports": "^4.0.0",
121121
"eslint-plugin-vitest": "^0.5.4",
122122
"eslint-plugin-vue": "^9.27.0",
123123
"eslint-plugin-yml": "^1.14.0",

‎pnpm-lock.yaml

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

‎src/cli/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const instance = yargs(hideBin(process.argv))
5353
.version('version', pkgJson.version)
5454
.alias('v', 'version')
5555

56-
// eslint-disable-next-line no-unused-expressions
56+
// eslint-disable-next-line ts/no-unused-expressions
5757
instance
5858
.help()
5959
.argv

‎src/cli/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export function isGitClean() {
55
execSync('git diff-index --quiet HEAD --')
66
return true
77
}
8-
catch (error) {
8+
catch {
99
return false
1010
}
1111
}

‎src/configs/typescript.ts

+6-4
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,12 @@ export async function typescript(
3232
const typeAwareRules: TypedFlatConfigItem['rules'] = {
3333
'dot-notation': 'off',
3434
'no-implied-eval': 'off',
35-
'no-throw-literal': 'off',
3635
'ts/await-thenable': 'error',
3736
'ts/dot-notation': ['error', { allowKeywords: true }],
3837
'ts/no-floating-promises': 'error',
3938
'ts/no-for-in-array': 'error',
4039
'ts/no-implied-eval': 'error',
4140
'ts/no-misused-promises': 'error',
42-
'ts/no-throw-literal': 'error',
4341
'ts/no-unnecessary-type-assertion': 'error',
4442
'ts/no-unsafe-argument': 'error',
4543
'ts/no-unsafe-assignment': 'error',
@@ -74,7 +72,10 @@ export async function typescript(
7472
sourceType: 'module',
7573
...typeAware
7674
? {
77-
project: tsconfigPath,
75+
projectService: {
76+
allowDefaultProject: ['./*.js'],
77+
defaultProject: tsconfigPath,
78+
},
7879
tsconfigRootDir: process.cwd(),
7980
}
8081
: {},
@@ -121,12 +122,12 @@ export async function typescript(
121122
'no-use-before-define': 'off',
122123
'no-useless-constructor': 'off',
123124
'ts/ban-ts-comment': ['error', { 'ts-ignore': 'allow-with-description' }],
124-
'ts/ban-types': ['error', { types: { Function: false } }],
125125
'ts/consistent-type-definitions': ['error', 'interface'],
126126
'ts/consistent-type-imports': ['error', { disallowTypeAnnotations: false, prefer: 'type-imports' }],
127127
'ts/method-signature-style': ['error', 'property'], // https://www.totaltypescript.com/method-shorthand-syntax-considered-harmful
128128
'ts/no-dupe-class-members': 'error',
129129
'ts/no-dynamic-delete': 'off',
130+
'ts/no-empty-object-type': 'error',
130131
'ts/no-explicit-any': 'off',
131132
'ts/no-extraneous-class': 'off',
132133
'ts/no-import-type-side-effects': 'error',
@@ -138,6 +139,7 @@ export async function typescript(
138139
'ts/no-unused-vars': 'off',
139140
'ts/no-use-before-define': ['error', { classes: false, functions: false, variables: true }],
140141
'ts/no-useless-constructor': 'off',
142+
'ts/no-wrapper-object-types': 'error',
141143
'ts/prefer-ts-expect-error': 'error',
142144
'ts/triple-slash-reference': 'off',
143145
'ts/unified-signatures': 'off',

‎src/types.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,9 @@ export interface OptionsStylistic {
162162
stylistic?: boolean | StylisticConfig
163163
}
164164

165-
export interface StylisticConfig extends Pick<StylisticCustomizeOptions, 'indent' | 'quotes' | 'jsx' | 'semi'> {
165+
// eslint-disable-next-line ts/no-empty-object-type
166+
export interface StylisticConfig
167+
extends Pick<StylisticCustomizeOptions, 'indent' | 'quotes' | 'jsx' | 'semi'> {
166168
}
167169

168170
export interface OptionsOverrides {

0 commit comments

Comments
 (0)
Please sign in to comment.