Skip to content

Commit b245467

Browse files
authored
Merge pull request #127 from jaredwilli/baby-steps
Some minor changes to things. eslintrc version bumps formatting etc.
2 parents 6a9b13b + 7e99b66 commit b245467

File tree

18 files changed

+4893
-489
lines changed

18 files changed

+4893
-489
lines changed

.eslintrc.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
{
2+
"extends": [
3+
"eslint:recommended",
4+
"plugin:react/recommended"
5+
],
26
"parser": "babel-eslint",
37
"env": {
48
"browser": true,
@@ -7,15 +11,16 @@
711
"node": true
812
},
913
"parserOptions": {
14+
"sourceType": "module",
1015
"ecmaFeatures": {
1116
"jsx": true
12-
},
13-
"sourceType": "module"
17+
}
1418
},
1519
"rules": {
1620
"no-const-assign": "warn",
1721
"no-this-before-super": "warn",
1822
"no-undef": "warn",
23+
"react/jsx-no-undef": [0, true],
1924
"no-unreachable": "warn",
2025
"no-unused-vars": "warn",
2126
"constructor-super": "warn",

0 commit comments

Comments
 (0)