Skip to content

Commit 7cc65de

Browse files
committed
Initial setup complete
0 parents  commit 7cc65de

15 files changed

+14939
-0
lines changed

.babelrc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"presets": [
3+
"env",
4+
"react"
5+
]
6+
}

.editorconfig

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[*]
2+
indent_style = space
3+
indent_size = 2
4+
charset = utf-8
5+
trim_trailing_whitespace = true

.eslintrc

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"extends": "airbnb",
3+
"env": {
4+
"node": true,
5+
"browser": true,
6+
"es6": true
7+
},
8+
"parserOptions": {
9+
"ecmaVersion": 6
10+
},
11+
"rules": {
12+
"no-multiple-empty-lines": 0,
13+
"linebreak-style": 0,
14+
"react/prop-types": 0,
15+
"react/prefer-stateless-function": 0,
16+
"react/jsx-filename-extension": 0,
17+
"react/forbid-prop-types": 0,
18+
"react/require-default-props": 0,
19+
"comma-dangle": 0,
20+
"space-before-function-paren": ["error", {
21+
"anonymous": "always",
22+
"named": "always",
23+
"asyncArrow": "always"
24+
}],
25+
"no-underscore-dangle": 0,
26+
"import/prefer-default-export": 0,
27+
"object-curly-newline": 0,
28+
"jsx-a11y/click-events-have-key-events": 0,
29+
"jsx-a11y/no-autofocus": 0,
30+
"class-methods-use-this": 0
31+
}
32+
}

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/
2+
dist/
3+
*.log

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 GaNeShKuMaRm
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.

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# my-react
2+
3+
A Simple Reactjs Scaffolding
4+
5+
* `git clone https://github.com/GaneshmKumar/my-react.git`
6+
* `cd my-react`
7+
* `npm i`

0 commit comments

Comments
 (0)