Skip to content

Commit 3cf81ee

Browse files
docs: remove superfluous dot (#670)
1 parent 4f90101 commit 3cf81ee

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ For example:
9797
```json
9898
{
9999
"scripts": {
100-
"lint": "eslint .",
101-
"lint:fix": "eslint . --fix"
100+
"lint": "eslint",
101+
"lint:fix": "eslint --fix"
102102
}
103103
}
104104
```
@@ -703,7 +703,7 @@ const foo = async (msg: string): void => {
703703
}
704704
```
705705

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`:
707707

708708
```ts
709709
async function foo(msg: string): void {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"dev": "npx @eslint/config-inspector --config eslint.config.ts",
2828
"build:inspector": "pnpm build && npx @eslint/config-inspector build",
2929
"watch": "tsup --watch",
30-
"lint": "eslint .",
30+
"lint": "eslint",
3131
"typegen": "tsx scripts/typegen.ts",
3232
"prepack": "nr build",
3333
"release": "bumpp && pnpm publish",

src/cli/run.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,5 +116,5 @@ export async function run(options: CliRunOptions = {}): Promise<void> {
116116
await updateVscodeSettings(result)
117117

118118
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`)
120120
}

0 commit comments

Comments
 (0)