Skip to content

Commit 095ec72

Browse files
author
Pradeep Baradur
committed
initial commit
0 parents  commit 095ec72

18 files changed

+9383
-0
lines changed

.babelrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"plugins": [
3+
["@babel/plugin-transform-react-jsx", {
4+
"pragma":"h"
5+
}]
6+
]
7+
}

.editorconfig

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 4
7+
max_line_length = 100
8+
trim_trailing_whitespace = true
9+
end_of_line = lf
10+
insert_final_newline = true
11+
12+
[*.{json,*rc,yml}]
13+
indent_size = 2
14+
15+
[*.md]
16+
trim_trailing_whitespace = false

.eslintrc

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"root": true,
3+
"env": {
4+
"browser": true,
5+
"node": true
6+
},
7+
"extends": [
8+
"airbnb"
9+
],
10+
"settings": {
11+
"react": {
12+
"pragma": "h"
13+
}
14+
},
15+
"rules": {
16+
"curly": ["error", "all"],
17+
"indent": ["error", 4, {
18+
"SwitchCase": 1
19+
}],
20+
"no-multiple-empty-lines": ["error", {
21+
"max": 1,
22+
"maxEOF": 1
23+
}],
24+
"no-plusplus": ["error", {
25+
"allowForLoopAfterthoughts": true
26+
}],
27+
"semi": ["error", "never"],
28+
"valid-jsdoc": ["error", {
29+
"requireReturn": false,
30+
"requireReturnType": true,
31+
"requireReturnDescription": false,
32+
"requireParamType": true,
33+
"requireParamDescription": false,
34+
"prefer": {
35+
"return": "returns"
36+
},
37+
"preferType": {
38+
"Null": "null",
39+
"Undefined": "undefined",
40+
"Number": "number",
41+
"Boolean": "boolean",
42+
"String": "string",
43+
"array": "Array",
44+
"object": "Object"
45+
}
46+
}],
47+
"react/forbid-prop-types": [false],
48+
"react/jsx-filename-extension": [1, {
49+
"extensions": [
50+
".jsx"
51+
]
52+
}],
53+
"react/jsx-indent": ["error", 4],
54+
"react/jsx-indent-props": ["error", 4],
55+
"react/react-in-jsx-scope": [false],
56+
"react/prop-types": [false],
57+
"no-console": "off",
58+
"no-underscore-dangle": "off"
59+
}
60+
}

.gitignore

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# macOS
2+
.DS_Store
3+
4+
# JetBrains
5+
.idea
6+
7+
# VS Code
8+
.vscode
9+
10+
# npm
11+
node_modules
12+
npm-debug.log*
13+
14+
# Jest
15+
coverage
16+
17+
# Built files
18+
/dist

0 commit comments

Comments
 (0)