Skip to content

Commit

Permalink
Adding golangci conf
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Lhussiez committed Sep 4, 2019
1 parent bdbbfa0 commit 8a203fa
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 8 deletions.
4 changes: 4 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
issues:
exclude:
- "not declared by package utf8"
- "unicode/utf8/utf8.go"
1 change: 1 addition & 0 deletions assets/sass/_theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ $color-white: #fff;
$color-post-theme: #1565c0;

// Markdown colors
$color-toc-link: grey;
$color-link: #07a;
$color-quote: #747d88;
$color-quote-border: #d5d8db;
Expand Down
4 changes: 2 additions & 2 deletions assets/sass/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ a {
}
}
nav a {
color: $color-grey;
color: $color-toc-link;
&:hover {
color: $color-text;
text-decoration: none;
Expand All @@ -78,7 +78,7 @@ a {
display: none;
font-weight: 700;
text-decoration: none;
color: $color-grey;
color: $color-toc-link;
&:hover {
text-decoration: none;
color: $color-text;
Expand Down
2 changes: 1 addition & 1 deletion assets/style.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/style.min.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/Depado/smallblog

go 1.12
go 1.13

require (
github.com/Depado/bfplus v0.1.1
Expand Down Expand Up @@ -30,7 +30,7 @@ require (
github.com/stvp/slug v0.0.0-20150928221549-5ab8191bb1fe
github.com/ugorji/go v1.1.7 // indirect
golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297 // indirect
golang.org/x/sys v0.0.0-20190830080133-08d80c9d36de // indirect
golang.org/x/sys v0.0.0-20190904005037-43c01164e931 // indirect
golang.org/x/text v0.3.2 // indirect
gopkg.in/russross/blackfriday.v2 v2.0.1
gopkg.in/yaml.v2 v2.2.2
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5h
golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20190830080133-08d80c9d36de h1:MtIqW4Vp7DcnuoJTsTOgsa2R3jBQnCU0bjwXo7DcNT8=
golang.org/x/sys v0.0.0-20190830080133-08d80c9d36de/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20190904005037-43c01164e931 h1:+WYfosiOJzB4BjsISl1Rv4ZLUy+VYcF+u+0Y9jcerv8=
golang.org/x/sys v0.0.0-20190904005037-43c01164e931/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs=
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
Expand Down

0 comments on commit 8a203fa

Please sign in to comment.