Skip to content

Commit 3504809

Browse files
committed
first commit
0 parents  commit 3504809

15 files changed

+338
-0
lines changed

.bumpedrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
files: [
2+
"package.json"
3+
]

.editorconfig

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
indent_style = space
7+
indent_size = 2
8+
end_of_line = lf
9+
charset = utf-8
10+
trim_trailing_whitespace = true
11+
insert_final_newline = true
12+
max_line_length = 80
13+
indent_brace_style = 1TBS
14+
spaces_around_operators = true
15+
quote_type = auto
16+
17+
[package.json]
18+
indent_style = space
19+
indent_size = 2
20+
21+
[*.md]
22+
trim_trailing_whitespace = false

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.gitignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
############################
2+
# npm
3+
############################
4+
node_modules
5+
npm-debug.log
6+
7+
8+
############################
9+
# tmp, editor & OS files
10+
############################
11+
.tmp
12+
*.swo
13+
*.swp
14+
*.swn
15+
*.swm
16+
.DS_STORE
17+
*#
18+
*~
19+
.idea
20+
nbproject
21+
22+
23+
############################
24+
# Tests
25+
############################
26+
testApp
27+
coverage
28+
29+
30+
############################
31+
# Other
32+
############################
33+
.node_history

.jscsrc

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
2+
{
3+
"disallowSpacesInNamedFunctionExpression": {
4+
"beforeOpeningRoundBrace": true
5+
},
6+
"disallowSpacesInFunctionExpression": {
7+
"beforeOpeningRoundBrace": true
8+
},
9+
"disallowSpacesInAnonymousFunctionExpression": {
10+
"beforeOpeningRoundBrace": true
11+
},
12+
"disallowSpacesInFunctionDeclaration": {
13+
"beforeOpeningRoundBrace": true
14+
},
15+
"disallowEmptyBlocks": true,
16+
"disallowSpacesInsideArrayBrackets": true,
17+
"disallowSpacesInsideParentheses": true,
18+
"disallowQuotedKeysInObjects": true,
19+
"disallowSpaceAfterObjectKeys": true,
20+
"disallowSpaceAfterPrefixUnaryOperators": true,
21+
"disallowSpaceBeforePostfixUnaryOperators": true,
22+
"disallowSpaceBeforeBinaryOperators": [
23+
","
24+
],
25+
"disallowMixedSpacesAndTabs": true,
26+
"disallowTrailingWhitespace": true,
27+
"excludeFiles": ["node_modules/**"],
28+
"maximumLineLength": 100,
29+
"disallowTrailingComma": true,
30+
"disallowYodaConditions": true,
31+
"disallowKeywords": [
32+
"with"
33+
],
34+
"disallowMultipleLineBreaks": true,
35+
"disallowMultipleVarDecl": true,
36+
"requireSpaceBeforeBlockStatements": true,
37+
"requireSpacesInConditionalExpression": true,
38+
"requireBlocksOnNewline": 1,
39+
"requireCommaBeforeLineBreak": true,
40+
"requireSpaceBeforeBinaryOperators": true,
41+
"requireSpaceAfterBinaryOperators": true,
42+
"requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
43+
"requireLineFeedAtFileEnd": true,
44+
"requireCapitalizedConstructors": true,
45+
"requireDotNotation": true,
46+
"requireSpacesInForStatement": true,
47+
"requireSpaceBetweenArguments": true,
48+
"requireCurlyBraces": [
49+
"do"
50+
],
51+
"requireSpaceBeforeKeywords": [
52+
"else"
53+
],
54+
"requireSpaceAfterKeywords": [
55+
"if",
56+
"else",
57+
"for",
58+
"while",
59+
"do",
60+
"switch",
61+
"case",
62+
"return",
63+
"try",
64+
"catch",
65+
"typeof"
66+
],
67+
"requirePaddingNewLinesBeforeLineComments": {
68+
"allExcept": "firstAfterCurly"
69+
},
70+
"safeContextKeyword": [
71+
"self",
72+
"_this"
73+
],
74+
"validateLineBreaks": "LF",
75+
"validateIndentation": 2,
76+
"validateQuoteMarks": {
77+
"mark": "'",
78+
"escape": true
79+
}
80+
}

.jshintrc

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"node": true, // Defines globals available when your code is running inside of the Node runtime environment
3+
"esnext": true, // Tells JSHint that your code uses ECMAScript 6 specific syntax.
4+
"bitwise": true, // Prohibits the use of bitwise operators such as ^ (XOR), | (OR) and others.
5+
"curly": false, // Always put curly braces around blocks in loops and conditionals
6+
"noarg": true, // Prohibits the use of arguments.caller and arguments.callee.
7+
"undef": true, // Prohibits the use of explicitly undeclared variables.
8+
"unused": "vars", // Warns when you define and never use your variables.
9+
"strict": true, // Requires all functions to run in ECMAScript 5's strict mode.
10+
"eqnull": true, // Suppresses warnings about == null comparisons
11+
"eqeqeq": true, // Prohibits the use of == and != in favor of === and !==.
12+
"browser": true, // This option defines globals exposed by modern browsers
13+
"mootools": true, // This option defines globals exposed by the MooTools JavaScript framework.
14+
"mocha": true // This option defines globals exposed by the "BDD" and "TDD" UIs of the Mocha unit testing framework.
15+
}

.npmignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.idea
2+
.project
3+
*.sublime-*
4+
.DS_Store
5+
*.seed
6+
*.log
7+
*.csv
8+
*.dat
9+
*.out
10+
*.pid
11+
*.swp
12+
*.swo
13+
node_modules
14+
coverage
15+
*.tgz
16+
*.xml

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
unsafe-perm=true

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
language: node_js
2+
node_js:
3+
- "0.12"
4+
- "0.11"
5+
- "0.10"
6+
- "iojs"

LICENSE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
The MIT License (MIT)
2+
3+
Copyright © 2015 Kiko Beats
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)