Skip to content

Commit 8203d03

Browse files
committed
Import project
1 parent 3bddf1c commit 8203d03

21 files changed

+17236
-0
lines changed

.browserslistrc

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

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
PORT=4000

.eslintrc.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
module.exports = {
2+
env: {
3+
es6: true,
4+
node: true,
5+
mocha: true,
6+
},
7+
extends: ["eslint:recommended", "react-app", "react-app/jest", "prettier"],
8+
parserOptions: {
9+
ecmaVersion: 2018,
10+
sourceType: "module",
11+
},
12+
ignorePatterns: "/node_modules",
13+
rules: {
14+
eqeqeq: ["error", "always"],
15+
"no-console": "off",
16+
"no-eval": "error",
17+
"no-var": "error",
18+
"prefer-const": "error",
19+
"sort-imports": [
20+
"warn",
21+
{
22+
memberSyntaxSortOrder: ["none", "single", "multiple", "all"],
23+
},
24+
],
25+
},
26+
};

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
#IDEs
4+
/.idea
5+
6+
# dependencies
7+
/node_modules
8+
/.pnp
9+
.pnp.js
10+
11+
# testing
12+
/coverage
13+
14+
# production
15+
/build
16+
17+
# misc
18+
.DS_Store
19+
.env.local
20+
.env.development.local
21+
.env.test.local
22+
.env.production.local
23+
24+
npm-debug.log*
25+
yarn-debug.log*
26+
yarn-error.log*

.husky/.gitignore

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

.prettierrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"overrides": [
3+
{
4+
"files": "*.html",
5+
"options": {
6+
"printWidth": 1000
7+
}
8+
}
9+
]
10+
}

0 commit comments

Comments
 (0)