Skip to content

Commit 3f27b14

Browse files
committed
apply code review suggestions
1 parent ae6b5bf commit 3f27b14

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.dockerignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.licenses/
2+
.git/
3+
.github/

.editorconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ indent_style = space
1212
indent_size = 2
1313

1414
# Use utf-8 charset for modern languages
15-
[*.{js,py,go}]
15+
[*.{go}]
1616
charset = utf-8
1717

1818
# Use tab indentation for Go and Makefiles
19-
[{*.go,go.*,Makefile}]
19+
[{*.go,go.*}]
2020
indent_style = tab
2121
indent_size = 4
2222

Taskfile.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ vars:
33
GOLANGCI_LINT_VERSION: v2.4.0
44
GOIMPORTS_VERSION: v0.29.0
55
DPRINT_VERSION: 0.48.0
6-
LICENSED_VERSION: "5.0.4"
76
VERSION: # if version is not passed we hack the semver by encoding the commit as pre-release
87
sh: echo "${VERSION:-0.0.0-$(git rev-parse --short HEAD)}"
98

dprint.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
{
2-
"json": {},
32
"markdown": {},
4-
"toml": {},
53
"dockerfile": {},
64
"yaml": {},
75
"excludes": [
86
".licenses/**",
97
"**/testdata/**"
108
],
119
"plugins": [
12-
"https://plugins.dprint.dev/json-0.19.4.wasm",
1310
"https://plugins.dprint.dev/markdown-0.17.8.wasm",
14-
"https://plugins.dprint.dev/toml-0.6.3.wasm",
1511
"https://plugins.dprint.dev/dockerfile-0.3.2.wasm",
1612
"https://plugins.dprint.dev/g-plane/pretty_yaml-v0.5.0.wasm"
1713
]

0 commit comments

Comments
 (0)