Skip to content

Commit 306d3b4

Browse files
committed
🎉 first commit
0 parents  commit 306d3b4

15 files changed

+7027
-0
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*config.js

.eslintrc

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"extends": "airbnb",
3+
"parser": "babel-eslint",
4+
"env": {
5+
"browser": true,
6+
"node": true,
7+
"es6": true,
8+
"mocha": true
9+
},
10+
11+
"plugins": [
12+
'react',
13+
'jsx-a11y',
14+
'import',
15+
],
16+
17+
"rules": {
18+
"global-require": 0,
19+
"no-restricted-globals": 0,
20+
"no-shadow": 0,
21+
"import/no-extraneous-dependencies": 0,
22+
"no-console": 0,
23+
"no-tabs": 0,
24+
"indent": 0,
25+
"no-use-before-define": [2, "nofunc"],
26+
"valid-jsdoc": 0,
27+
"require-jsdoc": 0,
28+
29+
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
30+
"react/prop-types": 0,
31+
"react/no-danger": 0,
32+
33+
"jsx-a11y/anchor-is-valid": 0,
34+
},
35+
36+
"globals": {
37+
"graphql": true,
38+
"module": true,
39+
"require": true,
40+
"__dirname": true,
41+
}
42+
}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
.ds_store

LICENSE.md

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

dist/index.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Three.js Starter</title>
6+
<style>
7+
body {
8+
margin: 0;
9+
}
10+
</style>
11+
</head>
12+
<body>
13+
<script src="js/three.bundle.js"></script>
14+
</body>
15+
</html>

0 commit comments

Comments
 (0)