-
Notifications
You must be signed in to change notification settings - Fork 389
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: standardize logging #1302
Changes from 36 commits
72f96cc
9328f52
3abfc67
a4449bd
c08de43
035bbef
e6dd5ac
dec3fed
9aa5d7d
209041f
568ff80
be13b5d
b32ea84
32603c2
71787aa
28bebde
5db0ddb
13fefe7
33f1934
75c7285
f23782f
655557b
c8b6d54
db969ac
a39674b
1c29d7c
a8e0dce
fe5f770
4130b15
34e4087
d66b6f7
c3cd030
795fe67
6779dc6
01e4fd5
6471c93
86ad349
9e45196
301409a
821c01d
09d3ec0
de264d4
6b9230c
27e2383
bac025e
7eb92d2
7720593
a8fe8d3
9ab96d0
89c7b62
18727d8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,3 +45,13 @@ fmt: | |
.PHONY: lint | ||
lint: | ||
$(rundep) github.com/golangci/golangci-lint/cmd/golangci-lint run --config .github/golangci.yml | ||
|
||
.PHONY: imports | ||
imports: | ||
$(MAKE) --no-print-directory -C tm2 imports | ||
$(MAKE) --no-print-directory -C gnovm imports | ||
$(MAKE) --no-print-directory -C gno.land imports | ||
|
||
.PHONY: tidy | ||
tidy: | ||
$(MAKE) --no-print-directory -C misc tidy | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you please double-check? I vaguely recall creating something similar, possibly only in the CI. Just ensure that there isn't already an existing solution for the same purpose. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we merge in
make fmt
instead?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Merged:
7eb92d2
Updated CI:
7720593
We should think about
goimports
linting for*.gno
imports in the future