Skip to content

Commit 75c9fb7

Browse files
committed
First Commit
0 parents  commit 75c9fb7

File tree

290 files changed

+83799
-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.

290 files changed

+83799
-0
lines changed

.babelrc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"presets": ["@babel/env", "@babel/react"],
3+
"plugins": [
4+
"@babel/plugin-proposal-class-properties",
5+
"@babel/plugin-transform-runtime"
6+
],
7+
"env": {
8+
"production": {
9+
"presets": [
10+
[
11+
"@babel/env",
12+
{
13+
"modules": false
14+
}
15+
]
16+
]
17+
}
18+
}
19+
}

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

.eslintignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
node_modules
2+
build
3+
/.cache/
4+
/public/static/styles.js
5+
examples/*/src/serviceWorker.js
6+
/dist/
7+
/lib/
8+
/bin/
9+
/include/
10+
/build/
11+
*.test.js
12+
dist
13+
*dist*
14+
/src/styles/vendor/

.eslintrc.json

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"plugins": ["babel", "markdown"],
3+
"extends": ["eslint:recommended", "plugin:react/recommended"],
4+
"rules": {
5+
"no-console": 0,
6+
"no-class-assign": 0,
7+
"no-mixed-spaces-and-tabs": 0,
8+
"comma-dangle": 0,
9+
"no-unused-vars": 1,
10+
"eqeqeq": [2, "smart"],
11+
"no-useless-concat": 2,
12+
"default-case": 2,
13+
"no-self-compare": 2,
14+
"prefer-const": 2,
15+
"no-underscore-dangle": [2, { "allowAfterThis": true }],
16+
"object-shorthand": 1,
17+
"babel/no-invalid-this": 2,
18+
"array-callback-return": 2,
19+
"valid-typeof": 2,
20+
"arrow-body-style": 2,
21+
"require-await": 2,
22+
"react/prop-types": 0,
23+
"no-var": 2,
24+
"linebreak-style": [2, "unix"],
25+
"semi": [1, "always"]
26+
},
27+
"env": {
28+
"es6": true,
29+
"browser": true
30+
},
31+
"parser": "babel-eslint",
32+
"parserOptions": {
33+
"sourceType": "module",
34+
"ecmaVersion": 2018,
35+
"ecmaFeatures": {
36+
"modules": true
37+
}
38+
},
39+
40+
"overrides": [
41+
{
42+
"files": ["*.md"],
43+
"rules": {
44+
"react/jsx-no-undef": 0,
45+
"react/react-in-jsx-scope": 0,
46+
"semi": 0,
47+
"no-undef": 0
48+
}
49+
}
50+
]
51+
}

.gitignore

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
dist
8+
.idea
9+
# Runtime data
10+
pids
11+
*.pid
12+
*.seed
13+
*.pid.lock
14+
.DS_store
15+
.install*
16+
.tern-port
17+
releases/
18+
# Directory for instrumented libs generated by jscoverage/JSCover
19+
lib-cov
20+
21+
# Coverage directory used by tools like istanbul
22+
coverage
23+
24+
# nyc test coverage
25+
.nyc_output
26+
27+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
28+
.grunt
29+
30+
# Bower dependency directory (https://bower.io/)
31+
bower_components
32+
33+
# node-waf configuration
34+
.lock-wscript
35+
36+
# Compiled binary addons (https://nodejs.org/api/addons.html)
37+
build/Release
38+
39+
# Dependency directories
40+
node_modules/
41+
jspm_packages/
42+
43+
# TypeScript v1 declaration files
44+
typings/
45+
46+
# Optional npm cache directory
47+
.npm
48+
49+
# Optional eslint cache
50+
.eslintcache
51+
52+
# Optional REPL history
53+
.node_repl_history
54+
55+
# Output of 'npm pack'
56+
*.tgz
57+
58+
# Yarn Integrity file
59+
.yarn-integrity
60+
61+
# dotenv environment variables file
62+
.env
63+
/.env.development
64+
/.env.production
65+
66+
# next.js build output
67+
.next
68+
69+
client/dist
70+
/.virtualgo
71+
.vscode/
72+
coverage.out

.ignore

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

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v11.0.0

.postcssrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"plugins": {
3+
"autoprefixer": true
4+
}
5+
}

.prettierignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
node_modules
2+
/.cache/
3+
/public/static/styles.js
4+
examples/*/src/serviceWorker.js
5+
/dist/
6+
/lib/
7+
/bin/
8+
/include/
9+
/build/
10+
build

.prettierrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "all",
4+
"arrowParens": "always",
5+
"tabWidth": 2
6+
}

0 commit comments

Comments
 (0)