Skip to content
This repository has been archived by the owner on Oct 18, 2019. It is now read-only.

Commit

Permalink
Some boilerplate code.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryuno-Ki committed Aug 30, 2018
1 parent db3e832 commit 930a088
Show file tree
Hide file tree
Showing 11 changed files with 10,065 additions and 2 deletions.
25 changes: 25 additions & 0 deletions .csscomb.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"remove-empty-rulesets": true,
"always-semicolon": true,
"color-case": "lower",
"block-indent": " ",
"color-shorthand": false,
"element-case": "lower",
"eof-newline": true,
"leading-zero": true,
"quotes": "single",
"space-before-colon": "",
"space-after-colon": " ",
"space-before-combinator": " ",
"space-after-combinator": " ",
"space-between-declarations": "\n",
"space-before-opening-brace": " ",
"space-after-opening-brace": "\n",
"space-after-selector-delimiter": "\n",
"space-before-selector-delimiter": "",
"space-before-closing-brace": "\n",
"strip-spaces": true,
"tab-size": true,
"unitless-zero": true,
"vendor-prefix-align": true
}
21 changes: 21 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# Matches multiple files with brace expansion notation
# Set default charset
[*.js]
charset = utf-8
indent_style = space
indent_size = 2

# Matches the exact file package.json
[package.json]
indent_style = space
indent_size = 2
14 changes: 14 additions & 0 deletions .flowconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[ignore]
.*\.json
.*/src/.*
.*/test/.*

[include]

[libs]

[lints]

[options]

[strict]
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,9 @@ tags


# End of https://www.gitignore.io/api/vim,node

annotated/
docs/
dist/
dist.zip
tmp/
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
save-exact=true
progress=false
18 changes: 18 additions & 0 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"check-coverage": true,
"per-file": true,
"include": [
"src/*.js",
"test/*.js"
],
"exclude": [
"test/*.spec.js"
],
"reporter": [
"lcov",
"html",
"text"
],
"report-dir": "./coverage",
"temp-directory": "./tmp"
}
Loading

0 comments on commit 930a088

Please sign in to comment.