Commit 3cf81ee 1 parent 4f90101 commit 3cf81ee Copy full SHA for 3cf81ee
File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -97,8 +97,8 @@ For example:
97
97
``` json
98
98
{
99
99
"scripts" : {
100
- "lint" : " eslint . " ,
101
- "lint:fix" : " eslint . --fix"
100
+ "lint" : " eslint" ,
101
+ "lint:fix" : " eslint --fix"
102
102
}
103
103
}
104
104
```
@@ -703,7 +703,7 @@ const foo = async (msg: string): void => {
703
703
}
704
704
```
705
705
706
- Will be transformed to this when you hit save with your editor or run ` eslint . --fix ` :
706
+ Will be transformed to this when you hit save with your editor or run ` eslint --fix ` :
707
707
708
708
``` ts
709
709
async function foo(msg : string ): void {
Original file line number Diff line number Diff line change 27
27
"dev" : " npx @eslint/config-inspector --config eslint.config.ts" ,
28
28
"build:inspector" : " pnpm build && npx @eslint/config-inspector build" ,
29
29
"watch" : " tsup --watch" ,
30
- "lint" : " eslint . " ,
30
+ "lint" : " eslint" ,
31
31
"typegen" : " tsx scripts/typegen.ts" ,
32
32
"prepack" : " nr build" ,
33
33
"release" : " bumpp && pnpm publish" ,
Original file line number Diff line number Diff line change @@ -116,5 +116,5 @@ export async function run(options: CliRunOptions = {}): Promise<void> {
116
116
await updateVscodeSettings ( result )
117
117
118
118
p . log . success ( c . green `Setup completed` )
119
- p . outro ( `Now you can update the dependencies by run ${ c . blue ( 'pnpm install' ) } and run ${ c . blue ( 'eslint . --fix' ) } \n` )
119
+ p . outro ( `Now you can update the dependencies by run ${ c . blue ( 'pnpm install' ) } and run ${ c . blue ( 'eslint --fix' ) } \n` )
120
120
}
You can’t perform that action at this time.
0 commit comments