Skip to content

Commit 7685557

Browse files
committed
initial commit
0 parents  commit 7685557

File tree

760 files changed

+135635
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

760 files changed

+135635
-0
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
js/libs/

.eslintrc.js

Lines changed: 271 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,271 @@
1+
module.exports = {
2+
"env": {
3+
"browser": true,
4+
"es6": false,
5+
"amd": true
6+
},
7+
"globals": {
8+
"module": true,
9+
"Float32Array": true,
10+
"Int32Array": true,
11+
"Set": true,
12+
"Promise": true
13+
},
14+
"extends": "eslint:recommended",
15+
"rules": {
16+
"accessor-pairs": "error",
17+
"array-bracket-spacing": [
18+
"error",
19+
"never"
20+
],
21+
"array-callback-return": "error",
22+
"arrow-body-style": "error",
23+
"arrow-parens": "error",
24+
"arrow-spacing": "error",
25+
"block-scoped-var": "error",
26+
"block-spacing": [
27+
"error",
28+
"always"
29+
],
30+
"brace-style": "off",
31+
"callback-return": "off",
32+
"camelcase": [
33+
"error",
34+
{
35+
"properties": "never"
36+
}
37+
],
38+
"capitalized-comments": "off",
39+
"class-methods-use-this": "error",
40+
"comma-dangle": "error",
41+
"comma-spacing": [
42+
"error",
43+
{
44+
"after": true,
45+
"before": false
46+
}
47+
],
48+
"comma-style": [
49+
"error",
50+
"last"
51+
],
52+
"complexity": "off",
53+
"computed-property-spacing": [
54+
"error",
55+
"never"
56+
],
57+
"consistent-return": "off",
58+
"consistent-this": "error",
59+
"curly": "error",
60+
"default-case": "off",
61+
"dot-location": [
62+
"error",
63+
"property"
64+
],
65+
"dot-notation": [
66+
"error",
67+
{
68+
"allowKeywords": true
69+
}
70+
],
71+
"eol-last": "off",
72+
"eqeqeq": "error",
73+
"func-call-spacing": "error",
74+
"func-name-matching": "error",
75+
"func-names": "off",
76+
"func-style": "off",
77+
"generator-star-spacing": "error",
78+
"global-require": "error",
79+
"guard-for-in": "error",
80+
"handle-callback-err": "error",
81+
"id-blacklist": "error",
82+
"id-length": "off",
83+
"id-match": "error",
84+
"indent": "off",
85+
"init-declarations": "off",
86+
"jsx-quotes": "error",
87+
"key-spacing": "error",
88+
"keyword-spacing": "off",
89+
"line-comment-position": "off",
90+
"linebreak-style": [
91+
"error",
92+
"unix"
93+
],
94+
"lines-around-comment": "off",
95+
"lines-around-directive": "off",
96+
"max-depth": "off",
97+
"max-len": "off",
98+
"max-lines": "off",
99+
"max-nested-callbacks": "error",
100+
"max-params": "off",
101+
"max-statements": "off",
102+
"max-statements-per-line": "off",
103+
"multiline-ternary": "off",
104+
"new-cap": "error",
105+
"new-parens": "error",
106+
"newline-after-var": "off",
107+
"newline-before-return": "off",
108+
"newline-per-chained-call": "off",
109+
"no-alert": "off",
110+
"no-array-constructor": "error",
111+
"no-await-in-loop": "error",
112+
"no-bitwise": "off",
113+
"no-caller": "error",
114+
"no-catch-shadow": "error",
115+
"no-confusing-arrow": ["error", {"allowParens": true}],
116+
"no-console": "error",
117+
"no-continue": "off",
118+
"no-div-regex": "error",
119+
"no-duplicate-imports": "error",
120+
"no-else-return": "off",
121+
"no-empty": [
122+
"error",
123+
{
124+
"allowEmptyCatch": true
125+
}
126+
],
127+
"no-empty-function": "error",
128+
"no-eq-null": "error",
129+
"no-eval": "off",
130+
"no-extend-native": "off",
131+
"no-extra-bind": "off",
132+
"no-extra-label": "error",
133+
"no-extra-parens": "off",
134+
"no-floating-decimal": "error",
135+
"no-implicit-globals": "off",
136+
"no-implied-eval": "error",
137+
"no-inline-comments": "off",
138+
"no-inner-declarations": [
139+
"error",
140+
"functions"
141+
],
142+
"no-invalid-this": "off",
143+
"no-iterator": "error",
144+
"no-label-var": "error",
145+
"no-lone-blocks": "error",
146+
"no-lonely-if": "off",
147+
"no-loop-func": "error",
148+
"no-magic-numbers": "off",
149+
"no-mixed-operators": "off",
150+
"no-mixed-requires": "off",
151+
"no-multi-spaces": "off",
152+
"no-multi-str": "error",
153+
"no-multiple-empty-lines": "error",
154+
"no-native-reassign": "error",
155+
"no-negated-condition": "off",
156+
"no-negated-in-lhs": "error",
157+
"no-nested-ternary": "off",
158+
"no-new": "error",
159+
"no-new-func": "error",
160+
"no-new-object": "error",
161+
"no-new-require": "error",
162+
"no-new-wrappers": "error",
163+
"no-octal-escape": "error",
164+
"no-param-reassign": "off",
165+
"no-path-concat": "error",
166+
"no-plusplus": "off",
167+
"no-process-env": "error",
168+
"no-process-exit": "error",
169+
"no-proto": "error",
170+
"no-prototype-builtins": "off",
171+
"no-restricted-globals": "error",
172+
"no-restricted-imports": "error",
173+
"no-restricted-modules": "error",
174+
"no-restricted-properties": "error",
175+
"no-restricted-syntax": "error",
176+
"no-return-assign": "off",
177+
"no-return-await": "error",
178+
"no-script-url": "error",
179+
"no-self-compare": "error",
180+
"no-sequences": "error",
181+
"no-shadow": "off",
182+
"no-shadow-restricted-names": "error",
183+
"no-spaced-func": "error",
184+
"no-sync": "error",
185+
"no-tabs": "error",
186+
"no-template-curly-in-string": "error",
187+
"no-ternary": "off",
188+
"no-throw-literal": "error",
189+
"no-trailing-spaces": "off",
190+
"no-undef-init": "error",
191+
"no-undefined": "off",
192+
"no-underscore-dangle": "off",
193+
"no-unmodified-loop-condition": "off",
194+
"no-unneeded-ternary": "off",
195+
"no-unused-expressions": "error",
196+
"no-use-before-define": "error",
197+
"no-useless-call": "error",
198+
"no-useless-computed-key": "error",
199+
"no-useless-concat": "off",
200+
"no-useless-constructor": "error",
201+
"no-useless-escape": "off",
202+
"no-useless-rename": "error",
203+
"no-useless-return": "off",
204+
"no-var": "off",
205+
"no-void": "error",
206+
"no-warning-comments": "off",
207+
"no-whitespace-before-property": "error",
208+
"no-with": "error",
209+
"object-curly-newline": "off",
210+
"object-curly-spacing": "off",
211+
"object-property-newline": "off",
212+
"object-shorthand": "off",
213+
"one-var": "error",
214+
"one-var-declaration-per-line": "off",
215+
"operator-assignment": "off",
216+
"operator-linebreak": "off",
217+
"padded-blocks": "off",
218+
"prefer-arrow-callback": "off",
219+
"prefer-const": "error",
220+
"prefer-numeric-literals": "error",
221+
"prefer-reflect": "off",
222+
"prefer-rest-params": "off",
223+
"prefer-spread": "error",
224+
"prefer-template": "off",
225+
"quote-props": "off",
226+
"quotes": "off",
227+
"radix": [
228+
"error",
229+
"always"
230+
],
231+
"require-await": "error",
232+
"require-jsdoc": "off",
233+
"rest-spread-spacing": "error",
234+
"semi": "error",
235+
"semi-spacing": [
236+
"error",
237+
{
238+
"after": true,
239+
"before": false
240+
}
241+
],
242+
"sort-imports": "error",
243+
"sort-keys": "off",
244+
"sort-vars": "off",
245+
"space-before-blocks": "error",
246+
"space-before-function-paren": "off",
247+
"space-in-parens": [
248+
"error",
249+
"never"
250+
],
251+
"space-infix-ops": "error",
252+
"space-unary-ops": "error",
253+
"spaced-comment": "off",
254+
"strict": "off",
255+
"symbol-description": "error",
256+
"template-curly-spacing": "error",
257+
"unicode-bom": [
258+
"error",
259+
"never"
260+
],
261+
"valid-jsdoc": "off",
262+
"vars-on-top": "off",
263+
"wrap-iife": "error",
264+
"wrap-regex": "error",
265+
"yield-star-spacing": "error",
266+
"yoda": [
267+
"error",
268+
"never"
269+
]
270+
}
271+
};

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/nbproject/private/
2+
/doc/
3+
/dist
4+
/node_modules/
5+
/.sass-cache/
6+
/config
7+
/data
8+
/css
9+
/js

0 commit comments

Comments
 (0)