-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from truemail-rb/develop
truemail-go v1.1.4
- Loading branch information
Showing
9 changed files
with
156 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
|
||
enableGlobDot: true | ||
|
||
patterns: | ||
- name: GithubUser | ||
pattern: /\[@.+\]/gmx | ||
|
||
languageSettings: | ||
- languageId: markdown | ||
ignoreRegExpList: | ||
- GithubUser | ||
|
||
words: | ||
- bestwebua | ||
- codecov | ||
- commitspell | ||
- consts | ||
- crtypto | ||
- funcs | ||
- golangci | ||
- gomod | ||
- gotestsum | ||
- lefthook | ||
- markdownlint | ||
- multihomed | ||
- punycode | ||
- rubocop | ||
- shellcheck | ||
- shortcuting | ||
- struct | ||
- structs | ||
- truemail | ||
- yamlint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
configuration=$(if [ "$2" = "" ]; then echo "$2"; else echo " $1 $2"; fi) | ||
latest_commit=$(git rev-parse HEAD) | ||
|
||
spellcheck_info() { | ||
echo "Checking the spelling of the latest commit ($latest_commit) message..." | ||
} | ||
|
||
compose_cspell_command() { | ||
echo "cspell-cli lint stdin$configuration" | ||
} | ||
|
||
cspell="$(compose_cspell_command)" | ||
|
||
spellcheck_latest_commit() { | ||
git log -1 --pretty=%B | $cspell | ||
} | ||
|
||
spellcheck_info | ||
spellcheck_latest_commit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
golang 1.21.5 | ||
golang 1.22.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,24 @@ | ||
module github.com/truemail-rb/truemail-go | ||
|
||
go 1.21 | ||
|
||
toolchain go1.21.5 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/brianvoe/gofakeit/v6 v6.28.0 | ||
github.com/foxcpp/go-mockdns v1.0.0 | ||
github.com/mocktools/go-smtp-mock/v2 v2.2.0 | ||
github.com/stretchr/testify v1.8.4 | ||
golang.org/x/net v0.20.0 | ||
github.com/foxcpp/go-mockdns v1.1.0 | ||
github.com/mocktools/go-smtp-mock/v2 v2.3.1 | ||
github.com/stretchr/testify v1.9.0 | ||
golang.org/x/net v0.28.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/miekg/dns v1.1.58 // indirect | ||
github.com/miekg/dns v1.1.62 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/stretchr/objx v0.5.1 // indirect | ||
golang.org/x/mod v0.14.0 // indirect | ||
golang.org/x/sys v0.16.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/tools v0.17.0 // indirect | ||
github.com/stretchr/objx v0.5.2 // indirect | ||
golang.org/x/mod v0.20.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/sys v0.24.0 // indirect | ||
golang.org/x/text v0.17.0 // indirect | ||
golang.org/x/tools v0.24.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters