Skip to content

Commit 0539c61

Browse files
authored
Merge pull request #30 from oslabs-beta/master
OSLabs Beta to OSLabs Main Merge
2 parents 5bddf90 + 55763ab commit 0539c61

File tree

151 files changed

+4879
-23935
lines changed

Some content is hidden

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

151 files changed

+4879
-23935
lines changed

.DS_Store

-10 KB
Binary file not shown.

.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
declare module '*.png'

.eslintrc

Lines changed: 0 additions & 4 deletions
This file was deleted.

.eslintrc.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"plugins": ["react", "prettier"],
3+
"parser": "babel-eslint",
4+
"parserOptions": {
5+
"ecmaVersion": 2018,
6+
"sourceType": "module",
7+
"ecmaFeatures": {
8+
"jsx": true
9+
}
10+
},
11+
"env": {
12+
"es6": true,
13+
"browser": true,
14+
"node": true,
15+
"jest": true
16+
},
17+
"extends": ["airbnb", "eslint:recommended", "plugin:react/recommended", "prettier"],
18+
"rules": {
19+
"prettier/prettier": "error",
20+
"no-unused-vars": [
21+
"warn",
22+
{
23+
"args": "none"
24+
}
25+
],
26+
"react/prop-types": "off",
27+
"no-console": "warn",
28+
"react/jsx-filename-extension": "off",
29+
"no-alert": "off",
30+
"no-plusplus": "off",
31+
"no-new": "off",
32+
"react/button-has-type": "off",
33+
"react/jsx-one-expression-per-line": "off",
34+
"no-restricted-globals": "off",
35+
"react/no-array-index-key": "warn",
36+
"no-restricted-syntax": "off",
37+
"guard-for-in": "off",
38+
"no-param-reassign": "off"
39+
}
40+
}

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,7 @@ node_modules
33
package-lock.json
44
.DS_Store
55
user/settings.json
6-
dist
6+
dist
7+
build
8+
coverage
9+
__tests__/**/__snapshots__

.prettierrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"singleQuote": true,
3+
"useTabs": false,
4+
"endOfLine": "auto",
5+
"arrowParens": "avoid",
6+
"printWidth": 100
7+
}

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Chronos
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 all
13+
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 THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)