Skip to content

Commit aa8b9ef

Browse files
committed
fix: formatting file
1 parent 8998458 commit aa8b9ef

File tree

6 files changed

+57
-58
lines changed

6 files changed

+57
-58
lines changed

.github/sweep.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
gha_enabled: true
22
branch: master
3-
blocked_dirs: []
3+
blocked_dirs: [ ]
44
draft: false
55
description: |
66
go-lockfree-queue is a production-ready starter scaffold for Go libraries that bundles opinionated project structure, module management, and fully automated CI/CD workflows. It integrates GitHub Actions, GoReleaser, comprehensive testing and linting, and security scanning so maintainers can focus on writing code instead of setup and infrastructure.

.vscode/extensions.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"recommendations": [
3-
"golang.Go"
4-
]
2+
"recommendations": [
3+
"golang.Go"
4+
]
55
}

.vscode/launch.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"version": "0.2.0",
3-
"configurations": [
4-
{
5-
"name": "Launch",
6-
"type": "go",
7-
"request": "launch",
8-
"mode": "auto",
9-
"program": "${fileDirname}",
10-
"env": {},
11-
"args": []
12-
}
13-
]
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Launch",
6+
"type": "go",
7+
"request": "launch",
8+
"mode": "auto",
9+
"program": "${fileDirname}",
10+
"env": {},
11+
"args": []
12+
}
13+
]
1414
}

.vscode/settings.json

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
{
2-
"[go]": {
3-
"editor.formatOnSave": true,
4-
"editor.codeActionsOnSave": {
5-
"source.organizeImports": "explicit"
6-
}
7-
},
8-
"[go.mod]": {
9-
"editor.formatOnSave": true,
10-
"editor.codeActionsOnSave": {
11-
"source.organizeImports": "explicit"
12-
}
13-
},
14-
"go.useLanguageServer": true,
15-
"gopls": {
16-
"formatting.local": "github.com/bsv-blockchain/go-lockfree-queue",
17-
"formatting.gofumpt": true
18-
},
19-
"go.lintTool": "golangci-lint",
20-
"go.lintFlags": [
21-
"--verbose"
22-
],
23-
"[go][go.mod]": {
24-
"editor.codeActionsOnSave": {
25-
"source.organizeImports": "explicit"
26-
}
27-
}
2+
"[go]": {
3+
"editor.formatOnSave": true,
4+
"editor.codeActionsOnSave": {
5+
"source.organizeImports": "explicit"
6+
}
7+
},
8+
"[go.mod]": {
9+
"editor.formatOnSave": true,
10+
"editor.codeActionsOnSave": {
11+
"source.organizeImports": "explicit"
12+
}
13+
},
14+
"go.useLanguageServer": true,
15+
"gopls": {
16+
"formatting.local": "github.com/bsv-blockchain/go-lockfree-queue",
17+
"formatting.gofumpt": true
18+
},
19+
"go.lintTool": "golangci-lint",
20+
"go.lintFlags": [
21+
"--verbose"
22+
],
23+
"[go][go.mod]": {
24+
"editor.codeActionsOnSave": {
25+
"source.organizeImports": "explicit"
26+
}
27+
}
2828
}

.vscode/tasks.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"version": "2.0.0",
3-
"tasks": [
4-
{
5-
"label": "make",
6-
"type": "shell",
7-
"command": "make",
8-
"problemMatcher": [
9-
"$go"
10-
],
11-
"group": {
12-
"kind": "build",
13-
"isDefault": true
14-
}
15-
}
16-
]
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "make",
6+
"type": "shell",
7+
"command": "make",
8+
"problemMatcher": [
9+
"$go"
10+
],
11+
"group": {
12+
"kind": "build",
13+
"isDefault": true
14+
}
15+
}
16+
]
1717
}

codecov.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ coverage:
1717
# --------------
1818
# which folders/files to ignore
1919
ignore:
20-
- ".devcontainer/**"
2120
- ".github/**"
2221
- ".make/**"
2322
- ".vscode/**"

0 commit comments

Comments
 (0)