Skip to content

Commit 73cfca9

Browse files
committedApr 21, 2017
initial files
1 parent a6d8036 commit 73cfca9

32 files changed

+5409
-0
lines changed
 

Diff for: ‎.eslintrc.yml

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
---
2+
extends:
3+
- plugin:react/recommended
4+
5+
env:
6+
browser: true
7+
node: true
8+
es6: true
9+
10+
parserOptions:
11+
ecmaVersion: 6
12+
sourceType: "module"
13+
ecmaFeatures:
14+
jsx: true
15+
16+
globals:
17+
__DEV__: true
18+
__SERVER__: true
19+
20+
plugins:
21+
- react
22+
23+
rules:
24+
react/jsx-uses-vars: 1
25+
react/prop-types: [1, { ignore: [children] }]
26+
27+
semi: 0
28+
key-spacing: 1
29+
curly: 0
30+
consistent-return: 0
31+
space-infix-ops: 1
32+
camelcase: 0
33+
no-spaced-func: 1
34+
no-alert: 1
35+
eol-last: 1
36+
comma-spacing: 1
37+
eqeqeq: 1
38+
39+
# possible errors
40+
comma-dangle: 0
41+
no-cond-assign: 2
42+
no-console: 0
43+
no-constant-condition: 2
44+
no-control-regex: 2
45+
no-debugger: 2
46+
no-dupe-args: 2
47+
no-dupe-keys: 2
48+
no-duplicate-case: 2
49+
no-empty-character-class: 2
50+
no-empty: 2
51+
no-ex-assign: 2
52+
no-extra-boolean-cast: 2
53+
no-extra-parens: 0
54+
no-extra-semi: 2
55+
no-func-assign: 2
56+
no-inner-declarations: 2
57+
no-invalid-regexp: 2
58+
no-irregular-whitespace: 2
59+
no-negated-in-lhs: 2
60+
no-obj-calls: 2
61+
no-regex-spaces: 2
62+
no-sparse-arrays: 2
63+
no-unexpected-multiline: 2
64+
no-unreachable: 2
65+
use-isnan: 2
66+
valid-jsdoc: 2
67+
valid-typeof: 2
68+
69+
no-redeclare: 2
70+
71+
init-declarations: 2
72+
no-catch-shadow: 2
73+
no-delete-var: 2
74+
no-label-var: 2
75+
no-shadow-restricted-names: 2
76+
no-shadow: 2
77+
no-undef-init: 2
78+
no-undef: 2
79+
no-undefined: 2
80+
no-unused-vars: 2
81+
no-use-before-define: 2

Diff for: ‎.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
6+
# Dependency directories
7+
node_modules
8+
9+
# Editor settings
10+
.vscode
11+
12+
13+
vendor

Diff for: ‎LICENSE

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
BSD 3-Clause License
2+
3+
Copyright (c) 2016, Free Code Camp
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
8+
9+
* Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
11+
12+
* Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
16+
* Neither the name of the copyright holder nor the names of its
17+
contributors may be used to endorse or promote products derived from
18+
this software without specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

0 commit comments

Comments
 (0)
Please sign in to comment.