tried to address linting issues

This commit is contained in:
Thomas Ruoff
2017-02-22 00:18:47 +01:00
parent e1c1be42ba
commit 8bf72b470e
8 changed files with 23 additions and 21 deletions

View File

@@ -1,13 +1,16 @@
{
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 8,
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"env": {
"browser": true,
"es6": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"react"
],
@@ -15,5 +18,8 @@
"react": {
"pragma": "h"
}
},
"globals": {
"require": true,
}
}