-
Notifications
You must be signed in to change notification settings - Fork 59
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 #238 from cybertk/0.5.3
v0.5.3
- Loading branch information
Showing
46 changed files
with
1,680 additions
and
760 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
### | ||
### .editorconfig <http://editorconfig.org/> | ||
### | ||
|
||
|
||
## Topmost EditorConfig file | ||
root = true | ||
|
||
## UTF8, Unix-style newlines, newline ends every file, trim trailing whitespace | ||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
## Source code: 2 space indentation | ||
[*.coffee,*.js] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
## RAML: 2 space indentation | ||
[*.raml] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
## Config files: 2 space indentation | ||
[*.json,*.yml,*.yaml] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
## Matches the exact files either package.json or .travis.yml | ||
[{package.json,.travis.yml}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
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,33 +1,37 @@ | ||
# Mac shit | ||
### | ||
### .gitignore | ||
### | ||
|
||
## Mac shit | ||
.DS_Store | ||
|
||
# Logfiles | ||
logs | ||
*.log | ||
## Editor-related tempfiles | ||
.*.sw[op] | ||
*~ | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
## Logfiles | ||
*.log | ||
logs/ | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
## Build tool configuration files and intermediate storage | ||
.grunt/ | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
# Node/npm | ||
.node_repl_history | ||
.npm/ | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
## Package dependencies | ||
node_modules/ | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
## Coverage reports and instrumented source | ||
.nyc_output/ | ||
coverage/ | ||
lib-cov/ | ||
lib/*.js | ||
|
||
# Dependency directory | ||
# Deployed apps should consider commenting this line out: | ||
# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git | ||
node_modules | ||
## `npm pack` artifact | ||
abao-[0-9]*.[0-9]*.[0-9]*.tgz | ||
|
||
# Generated from CoffeeScript source | ||
lib/*.js | ||
tests/unit/*.js | ||
## dotenv environment variables file | ||
.env | ||
|
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,18 @@ | ||
{ | ||
"default": true, | ||
"header-style": { "style": "atx" }, | ||
"ul-style": { "style": "asterisk" }, | ||
"ul-indent": { "indent": 2 }, | ||
"no-multiple-blanks": { "maximum": 2 }, | ||
"line-length": { "line_length": 120 }, | ||
"commands-show-output": false, | ||
"ol-prefix": { "style": "one" }, | ||
"hr-style": { "style": "---" }, | ||
"proper-names": { | ||
"names": [ | ||
"CoffeeScript", | ||
"JavaScript" | ||
], | ||
"code_blocks": false | ||
} | ||
} |
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,4 +1,39 @@ | ||
test/ | ||
lib/*.js | ||
### | ||
### .npmignore | ||
### | ||
|
||
## Git | ||
.gitignore | ||
|
||
## GitHub | ||
.github/ | ||
|
||
## CI configuration files | ||
.codeclimate.yml | ||
.travis.yml | ||
wercker.yml | ||
|
||
## Build tool configuration files and intermediate storage | ||
.editorconfig | ||
.grunt/ | ||
.markdownlint.json | ||
Gruntfile.coffee | ||
coffeelint.json | ||
|
||
## Node/npm | ||
.node_repl_history | ||
.npm/ | ||
|
||
## Coverage reports and instrumented source | ||
coverage/ | ||
lib/*.js | ||
|
||
## Test code and fixtures | ||
test/ | ||
|
||
## `npm pack` artifact | ||
abao-[0-9]*.[0-9]*.[0-9]*.tgz | ||
|
||
# dotenv environment variables file | ||
.env | ||
|
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
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
Oops, something went wrong.