Skip to content

Commit 9df520e

Browse files
authored
Merge branch 'main' into feature/sec
Signed-off-by: Michail Sinelnikov <72449391+RottenRat@users.noreply.github.com>
2 parents 95cf602 + 95a4205 commit 9df520e

File tree

115 files changed

+16942
-1058
lines changed

Some content is hidden

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

115 files changed

+16942
-1058
lines changed

.gitignore

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,29 @@ dist
44
/dmt
55
# Ignore Go coverage output
66
coverage.out
7-
coverage.svg
7+
coverage.svg
8+
# Ignore manual test modules
9+
/test-modules/**
10+
/test-modules/*
11+
/testdata/**
12+
/testdata/*
13+
# Ignore IDE config files
14+
.vscode/
15+
.idea/
16+
*.iml
17+
# Ignore OS generated files
18+
.DS_Store
19+
Thumbs.db
20+
# Ignore editor swap files
21+
*.swp
22+
*~
23+
# Ignore binary files
24+
*.exe
25+
*.dll
26+
*.so
27+
*.dylib
28+
*.test
29+
# Ignore log files
30+
*.log
31+
logs/
32+
*.tmp

.golangci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ linters:
7373
govet:
7474
enable:
7575
- nilness
76-
- shadow
7776
lll:
7877
line-length: 140
7978
misspell:

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,11 @@ setup-hooks:
4949
./scripts/setup-hooks.sh
5050
.PHONY: setup-hooks
5151

52+
# Mock generation
53+
generate-mocks:
54+
go generate ./pkg/module.go
55+
.PHONY: generate-mocks
56+
5257
# Non-PHONY targets (real files)
5358

5459
$(BINARY): FORCE

0 commit comments

Comments
 (0)