Skip to content

Commit 3621b0a

Browse files
committed
Initial commit
0 parents  commit 3621b0a

22 files changed

+15712
-0
lines changed

.editorconfig

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 4
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.{eslintrc,json,mdastrc,svg,yml}]
12+
indent_size = 2
13+
14+
[*.md]
15+
trim_trailing_whitespace = false

.eslintignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
build/
2+
components/
3+
coverage/
4+
build.js
5+
alex.js
6+
alex.min.js

.eslintrc

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"extends": "eslint:recommended",
3+
"env": {
4+
"node": true,
5+
"browser": true
6+
},
7+
"rules": {
8+
"quotes": [2, "single"]
9+
}
10+
}

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.DS_Store
2+
*.log
3+
bower_components/
4+
build/
5+
components/
6+
node_modules/
7+
coverage/
8+
build.js

.jscs.json

+144
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
{
2+
"excludeFiles": [
3+
"build/",
4+
"components/",
5+
"coverage/",
6+
"node_modules/",
7+
"build.js",
8+
"alex.js",
9+
"alex.min.js"
10+
],
11+
"jsDoc": {
12+
"checkAnnotations": "jsdoc3",
13+
"checkParamNames": true,
14+
"checkRedundantAccess": true,
15+
"checkRedundantParams": true,
16+
"checkRedundantReturns": true,
17+
"checkReturnTypes": true,
18+
"checkTypes": "strictNativeCase",
19+
"enforceExistence": true,
20+
"requireHyphenBeforeDescription": true,
21+
"requireNewlineAfterDescription": true,
22+
"requireParamTypes": true,
23+
"requireParamDescription": true,
24+
"requireReturnTypes": true
25+
},
26+
"requireCurlyBraces": [
27+
"if",
28+
"else",
29+
"for",
30+
"while",
31+
"do",
32+
"try",
33+
"catch"
34+
],
35+
"requireSpaceAfterKeywords": [
36+
"if",
37+
"else",
38+
"for",
39+
"while",
40+
"do",
41+
"switch",
42+
"return",
43+
"try",
44+
"catch"
45+
],
46+
"requireSpaceBeforeBlockStatements": true,
47+
"requireParenthesesAroundIIFE": true,
48+
"requireSpacesInConditionalExpression": true,
49+
"requireSpacesInFunctionExpression": {
50+
"beforeOpeningCurlyBrace": true
51+
},
52+
"requireSpacesInAnonymousFunctionExpression": {
53+
"beforeOpeningRoundBrace": true,
54+
"beforeOpeningCurlyBrace": true
55+
},
56+
"requireSpacesInNamedFunctionExpression": {
57+
"beforeOpeningRoundBrace": true,
58+
"beforeOpeningCurlyBrace": true
59+
},
60+
"requireBlocksOnNewline": true,
61+
"disallowEmptyBlocks": true,
62+
"disallowSpacesInsideObjectBrackets": true,
63+
"disallowSpacesInsideArrayBrackets": true,
64+
"disallowSpacesInsideParentheses": true,
65+
"requireSpacesInsideObjectBrackets": "all",
66+
"disallowDanglingUnderscores": true,
67+
"disallowSpaceAfterObjectKeys": true,
68+
"requireCommaBeforeLineBreak": true,
69+
"requireOperatorBeforeLineBreak": [
70+
"?",
71+
"+",
72+
"-",
73+
"/",
74+
"*",
75+
"=",
76+
"==",
77+
"===",
78+
"!=",
79+
"!==",
80+
">",
81+
">=",
82+
"<",
83+
"<="
84+
],
85+
"requireSpaceBeforeBinaryOperators": [
86+
"+",
87+
"-",
88+
"/",
89+
"*",
90+
"=",
91+
"==",
92+
"===",
93+
"!=",
94+
"!=="
95+
],
96+
"requireSpaceAfterBinaryOperators": [
97+
"+",
98+
"-",
99+
"/",
100+
"*",
101+
"=",
102+
"==",
103+
"===",
104+
"!=",
105+
"!=="
106+
],
107+
"disallowSpaceAfterPrefixUnaryOperators": [
108+
"++",
109+
"--",
110+
"+",
111+
"-",
112+
"~",
113+
"!"
114+
],
115+
"disallowSpaceBeforePostfixUnaryOperators": [
116+
"++",
117+
"--"
118+
],
119+
"disallowImplicitTypeConversion": [
120+
"numeric",
121+
"boolean",
122+
"binary",
123+
"string"
124+
],
125+
"requireCamelCaseOrUpperCaseIdentifiers": true,
126+
"disallowKeywords": [
127+
"with"
128+
],
129+
"disallowMultipleLineStrings": true,
130+
"disallowMultipleLineBreaks": true,
131+
"validateLineBreaks": "LF",
132+
"validateQuoteMarks": "'",
133+
"disallowMixedSpacesAndTabs": true,
134+
"disallowTrailingWhitespace": true,
135+
"disallowTrailingComma": true,
136+
"disallowKeywordsOnNewLine": [
137+
"else"
138+
],
139+
"requireLineFeedAtFileEnd": true,
140+
"requireCapitalizedConstructors": true,
141+
"safeContextKeyword": "self",
142+
"requireDotNotation": true,
143+
"disallowYodaConditions": true
144+
}

.mdastignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
components/

.mdastrc

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"output": true,
3+
"plugins": [
4+
"lint",
5+
"github",
6+
"comment-config",
7+
"slug",
8+
"validate-links"
9+
],
10+
"settings": {
11+
"bullet": "*"
12+
}
13+
}

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: node_js
2+
script: npm run-script test-travis
3+
node_js:
4+
- '0.10'
5+
- '0.11'
6+
- '0.12'
7+
- iojs
8+
sudo: false
9+
after_script: npm install codecov.io && cat ./coverage/lcov.info | codecov

LICENSE

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

0 commit comments

Comments
 (0)