Skip to content

Commit de8fdef

Browse files
committed
Set initial files and folders for the product
0 parents  commit de8fdef

File tree

282 files changed

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

282 files changed

+17978
-0
lines changed

.eslintrc.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"extends": ["plugin:react/recommended", "airbnb", "prettier"],
7+
"parserOptions": {
8+
"ecmaFeatures": {
9+
"jsx": true
10+
},
11+
"ecmaVersion": 12,
12+
"sourceType": "module"
13+
},
14+
"plugins": ["react", "prettier"],
15+
"rules": {
16+
"prettier/prettier": [
17+
"error",
18+
{
19+
"endOfLine": "auto"
20+
}
21+
],
22+
"react/react-in-jsx-scope": "off",
23+
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
24+
"react/jsx-props-no-spreading": [
25+
1,
26+
{
27+
"custom": "ignore"
28+
}
29+
],
30+
"react/jsx-curly-spacing": [2, "never"]
31+
},
32+
"settings": { "import/resolver": { "node": { "paths": ["src"] } } }
33+
}

.gitignore

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

.prettierrc.json

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

0 commit comments

Comments
 (0)