File structuring

This commit is contained in:
Josh Johnson 2016-03-15 14:04:53 +00:00
parent aee04206d2
commit ee252bfd5c
4 changed files with 30 additions and 0 deletions

3
.babelrc Normal file
View file

@ -0,0 +1,3 @@
{
"presets": ["es2015", "stage-0", "react"]
}

21
.eslintrc Normal file
View file

@ -0,0 +1,21 @@
{
"ecmaFeatures": {
"jsx": true,
"modules": true
},
"env": {
"browser": true,
"node": true
},
"parser": "babel-eslint",
"rules": {
"quotes": [2, "single"],
"strict": [2, "never"],
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/react-in-jsx-scope": 2
},
"plugins": [
"react"
]
}

6
.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
node_modules
npm-debug.log
.DS_Store
# Test
tests/reports

0
index.html Normal file
View file