Skip to content

Commit ed652a4

Browse files
committedOct 25, 2019
Initial commit
0 parents  commit ed652a4

File tree

210 files changed

+26803
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

210 files changed

+26803
-0
lines changed
 

‎.editorconfig

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
; http://editorconfig.org/
2+
3+
root = true
4+
5+
[Makefile]
6+
indent_style = tab
7+
8+
[*.js]
9+
indent_style = space
10+
indent_size = 2
11+
12+
[*.scss]
13+
indent_style = space
14+
indent_size = 2
15+
16+
[{.golang-ci.yml,.goreleaser.yml,.markdownlint.json, docker-compose.yml, enduro.toml}]
17+
indent_style = space
18+
indent_size = 2

‎.github/workflows/lint.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
on:
2+
- push
3+
- pull_request
4+
name: Lint
5+
jobs:
6+
lint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@v1
11+
- name: Install Go
12+
uses: actions/setup-go@v1
13+
with:
14+
go-version: 1.13.x
15+
- name: Lint code
16+
run: |
17+
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.21.0
18+
bin/golangci-lint run -v --timeout=5m

0 commit comments

Comments
 (0)
Please sign in to comment.