-
Notifications
You must be signed in to change notification settings - Fork 3
feat!: CLI v2 #43
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!: CLI v2 #43
Changes from all commits
7d55270
adc0121
66b0bdb
445ae8b
42823f3
d0715fe
a645954
d1a9b10
6057834
e386cbd
03c9d45
758e80f
583a128
6177bc0
468d914
1c9bfca
78cd925
aeb1a23
ed91631
75ef0b3
4c248a9
1ee0d46
20221f7
2c03697
49e198a
7a43aff
017d1f5
adec899
93e3742
3182cde
bba9a05
c90d38b
3b97f01
3cdebe0
e1c1796
55c7b80
4066fc5
673305d
d3fcac6
3ac1f0a
aa01e4c
67ec00b
36c7d5b
66b8fcf
0e39b44
ba492b2
2fcf7f8
19d4a1b
ee0b971
7abaefa
295ae60
cf68751
034ae0a
3872c00
ec74e13
3ccef0b
3b524ba
130a268
b1b0f88
33e5034
f77e350
397fe81
5a72711
570c658
74ec424
58a6c1d
b5ec797
3054a00
4869b9e
5787c55
bacbdef
84e28e9
1b93154
e89a864
04a07f9
5ce6112
7462d29
4294ecb
1645a66
37cf3fe
83bbc61
221d0e8
ff4e351
1995b87
0a46dce
d85620c
52b689a
301001b
9cae432
4489a45
1b951a2
dd34162
9ffad81
4dcf462
30ddf44
e780d04
f5b681b
dc63786
75adae5
831d361
0bf02bc
bc7b9fe
08038fe
2849e59
c216c51
d4488b1
13d6954
b38f517
4bf9af4
2cb1d7e
257d69d
691473a
1a2b97e
1d82784
083ba25
d149e49
7ea95eb
5bf16fc
5eb5a82
8a4c42e
4a9bdee
bbbcec1
5a5551f
5e1f792
83efb70
b274287
f3fcc43
943f3cc
abcea94
23aefc6
87e80e3
ae66444
aca404f
54eff40
97b898f
15b5954
e1ee861
2f71d6f
2112440
fc24fd7
2832be0
c773e51
69d62ee
aa55c22
6402a1b
c1289c6
030c59e
d0289db
cbed4c6
398dd87
5a9a50b
fd46f56
6fd6c81
b121c94
a562b9c
dc118e6
bc8fbc9
9a49851
673f4cb
01dd47f
678a9fc
e1f8353
62805c7
f9f7025
1c28e24
127544d
e63f676
dce3940
92c69d6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,3 @@ | ||
| *-debug.log | ||
| *-error.log | ||
| /.nyc_output | ||
| /dist | ||
| /lib | ||
| /package-lock.json | ||
| /tmp | ||
| /yarn.lock | ||
| node_modules | ||
| oclif.manifest.json | ||
| .idea | ||
| flagsmith.json | ||
| /flagsmith | ||
| /dist/ | ||
| *.test |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| version: "2" | ||
|
|
||
| linters: | ||
| exclusions: | ||
| presets: | ||
| - std-error-handling | ||
| rules: | ||
| - path: _test\.go | ||
| linters: | ||
| - errcheck | ||
|
|
||
| formatters: | ||
| enable: | ||
| - gofmt |
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| repos: | ||
| - repo: https://github.com/pre-commit/pre-commit-hooks | ||
| rev: v6.0.0 | ||
| hooks: | ||
| - id: trailing-whitespace | ||
| - id: end-of-file-fixer | ||
| - id: check-yaml | ||
| - id: check-added-large-files | ||
| - id: check-merge-conflict | ||
|
|
||
| - repo: https://github.com/golangci/golangci-lint | ||
| rev: v2.11.4 | ||
| hooks: | ||
| - id: golangci-lint-full | ||
| - id: golangci-lint-fmt | ||
| - id: golangci-lint-config-verify | ||
|
|
||
| - repo: local | ||
| hooks: | ||
| - id: go-mod-tidy | ||
| name: go mod tidy -diff | ||
| entry: go mod tidy -diff | ||
| language: system | ||
| files: (^go\.(mod|sum)$)|(\.go$) | ||
| pass_filenames: false | ||
| - id: go-test | ||
| name: go test | ||
| entry: go test ./... | ||
| language: system | ||
| types: [go] | ||
| pass_filenames: false | ||
| stages: [pre-push] | ||
|
|
||
| ci: | ||
| skip: [golangci-lint-full, golangci-lint-config-verify, go-mod-tidy, go-test] | ||
This file was deleted.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.