Skip to content

Commit d4a866b

Browse files
authored
Merge pull request #170 from b-open-io/master
2.0 Full Merge
2 parents 3919971 + fcc84ac commit d4a866b

File tree

325 files changed

+39788
-718
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

325 files changed

+39788
-718
lines changed

.github/workflows/golangci-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
env:
1212
GO_VERSION: '1.24'
13-
GOLANGCI_LINT_VERSION: v1.64.6
13+
GOLANGCI_LINT_VERSION: v2.1.1
1414

1515
jobs:
1616
detect-modules:

.github/workflows/sonar.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
env:
1515
GO_VERSION: '1.24'
16-
GOLANGCI_LINT_VERSION: v1.64.6
16+
GOLANGCI_LINT_VERSION: v2.1.1
1717

1818
jobs:
1919
sonarcloud:

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
*.dll
44
*.so
55
*.dylib
6+
*.test
67

78
# Ignore dependencies
89
/node_modules
@@ -39,3 +40,5 @@ golangci-lint-report.xml
3940

4041
# Ignore any other files or directories specific to your project
4142

43+
# Ignore files related to AI tools
44+
CLAUDE.md

.golangci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
version: "2"
12

23
issues:
34
exclude-rules:

.vscode/settings.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,25 @@
22
"sonarlint.connectedMode.project": {
33
"connectionId": "bitcoin-sv",
44
"projectKey": "bitcoin-sv_go-sdk"
5-
}
5+
},
6+
"workbench.colorCustomizations": {
7+
"activityBar.activeBackground": "#e7a213",
8+
"activityBar.background": "#e7a213",
9+
"activityBar.foreground": "#15202b",
10+
"activityBar.inactiveForeground": "#15202b99",
11+
"activityBarBadge.background": "#e2fdf4",
12+
"activityBarBadge.foreground": "#15202b",
13+
"commandCenter.border": "#15202b99",
14+
"sash.hoverBorder": "#e7a213",
15+
"statusBar.background": "#b8810f",
16+
"statusBar.foreground": "#15202b",
17+
"statusBarItem.hoverBackground": "#89600b",
18+
"statusBarItem.remoteBackground": "#b8810f",
19+
"statusBarItem.remoteForeground": "#15202b",
20+
"titleBar.activeBackground": "#b8810f",
21+
"titleBar.activeForeground": "#15202b",
22+
"titleBar.inactiveBackground": "#b8810f99",
23+
"titleBar.inactiveForeground": "#15202b99"
24+
},
25+
"peacock.color": "#b8810f"
626
}

0 commit comments

Comments
 (0)