Skip to content

Commit 3441731

Browse files
authored
Fix references to gdscript-format (#205)
1 parent 2e4b976 commit 3441731

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ The formatter also includes a linter that checks for style and convention issues
6464
To lint a file, run:
6565

6666
```bash
67-
gdscript-format lint path/to/file.gd
67+
gdscript-formatter lint path/to/file.gd
6868
```
6969

7070
This will output issues in the format:
@@ -78,7 +78,7 @@ filepath:line:rule:severity: description
7878
To see all available linting rules:
7979

8080
```bash
81-
gdscript-format lint --list-rules
81+
gdscript-formatter lint --list-rules
8282
```
8383

8484
### Configuring the linter
@@ -88,15 +88,15 @@ gdscript-format lint --list-rules
8888
You can disable specific rules using the `--disable` flag:
8989

9090
```bash
91-
gdscript-format lint --disable class-name,signal-name path/to/file.gd
91+
gdscript-formatter lint --disable class-name,signal-name path/to/file.gd
9292
```
9393

9494
#### Setting line length
9595

9696
The linter provides several configurable options:
9797

9898
```bash
99-
gdscript-format lint --max-line-length 120 path/to/file.gd
99+
gdscript-formatter lint --max-line-length 120 path/to/file.gd
100100
```
101101

102102
#### Pretty printing
@@ -106,7 +106,7 @@ By default, the linter outputs one line for each warning/error.
106106
For more human readable output, use the `--pretty` flag:
107107

108108
```bash
109-
gdscript-format lint --pretty path/to/file.gd
109+
gdscript-formatter lint --pretty path/to/file.gd
110110
```
111111

112112
#### Ignoring lines

0 commit comments

Comments
 (0)