mirror of
https://github.com/ivuorinen/gibidify.git
synced 2026-01-26 03:24:05 +00:00
fix(lint): linting problems
This commit is contained in:
14
README.md
14
README.md
@@ -41,13 +41,13 @@ Run the Docker container:
|
||||
|
||||
```bash
|
||||
docker run --rm \
|
||||
-v $(pwd):/workspace \
|
||||
-v $HOME/.config/gibidify:/config \
|
||||
ghcr.io/ivuorinen/gibidify:<tag> \
|
||||
-source /workspace/your_source_directory \
|
||||
-destination /workspace/output.txt \
|
||||
--prefix="Your prefix text" \
|
||||
--suffix="Your suffix text"
|
||||
-v $(pwd):/workspace \
|
||||
-v $HOME/.config/gibidify:/config \
|
||||
ghcr.io/ivuorinen/gibidify:<tag> \
|
||||
-source /workspace/your_source_directory \
|
||||
-destination /workspace/output.txt \
|
||||
--prefix="Your prefix text" \
|
||||
--suffix="Your suffix text"
|
||||
```
|
||||
|
||||
## Configuration
|
||||
|
||||
@@ -8,7 +8,7 @@ type FakeWalker struct {
|
||||
}
|
||||
|
||||
// Walk returns predetermined file paths or an error, depending on FakeWalker's configuration.
|
||||
func (fw FakeWalker) Walk(root string) ([]string, error) {
|
||||
func (fw FakeWalker) Walk(_ string) ([]string, error) {
|
||||
if fw.Err != nil {
|
||||
return nil, fw.Err
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user