Skip to content

Commit 3238dce

Browse files
Apply suggestions from code review
Co-authored-by: davidlion <[email protected]>
1 parent e563996 commit 3238dce

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ git submodule update --init --recursive
1616
```
1717

1818
## Linting
19-
Before submitting a pull request, ensure you’ve run the linting commands below and either fixed any
20-
violations or suppressed the warnings.
19+
Before submitting a pull request, ensure you’ve run the linting commands below and have fixed all
20+
violations and suppressed all warnings.
2121

2222
To run all linting checks:
2323
```shell
2424
task lint:check
2525
```
2626

27-
To run all linting checks AND automatically fix any fixable issues:
27+
To run all linting checks AND fix some violations:
2828
```shell
2929
task lint:fix
3030
```

taskfile.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ vars:
99

1010
tasks:
1111
clean:
12-
desc: "Removes project builds."
12+
desc: "Removes the project build directory."
1313
cmds:
1414
- "rm -rf '{{.G_BUILD_DIR}}'"
1515

taskfiles/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ tasks:
1616
- task: "yaml-check"
1717

1818
fix:
19-
desc: "Runs the full suite of linters and automatically fixes any fixable issues."
19+
desc: "Runs the full suite of linters and fixes some violations."
2020
cmds:
2121
- task: "yaml-fix"
2222

0 commit comments

Comments
 (0)