Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
kohkimakimoto committed Nov 7, 2019
0 parents commit a3167f4
Show file tree
Hide file tree
Showing 87 changed files with 10,991 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
root = true

[*]
indent_style = space
end_of_line = lf
charset = utf-8
indent_size = 2

[Makefile]
indent_style = tab
indent_size = 4

[*.html]
indent_style = space
indent_size = 2

[*.yml]
indent_style = space
indent_size = 2

[*.yaml]
indent_style = space
indent_size = 2

[*.json]
indent_style = space
indent_size = 2

[*.js]
indent_style = space
indent_size = 2

[*.ts]
indent_style = space
indent_size = 2

[*.tsx]
indent_style = space
indent_size = 2

[*.css]
indent_style = space
indent_size = 2

[*.scss]
indent_style = space
indent_size = 2

[*.go]
indent_style = tab
indent_size = 4
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.DS_Store
Thumbs.db
.tags*
._*
*.iml
.vscode/
node_modules/

.go-packages/
/_tmp
/.vagrant
/.envrc
/coverage-report.html

/build/outputs/*

/vendor

/res/views/bindata.go
/res/ui

!.gitkeep
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"printWidth": 130,
"tabWidth": 2,
"singleQuote": true,
"useTabs": false
}
Loading

0 comments on commit a3167f4

Please sign in to comment.