@@ -64,7 +64,7 @@ The formatter also includes a linter that checks for style and convention issues
6464To 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
7070This will output issues in the format:
@@ -78,7 +78,7 @@ filepath:line:rule:severity: description
7878To 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
8888You 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
9696The 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.
106106For 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