wrangle some of the linting rules

This commit is contained in:
2017-02-14 19:44:00 -07:00
parent b80f01019d
commit 3631f98b58
4 changed files with 17 additions and 5 deletions

View File

@@ -1,7 +1,3 @@
{
"extends": "airbnb",
"env": {
"browser": true,
"node": true
}
"extends": "airbnb"
}

6
server/.eslintrc Normal file
View File

@@ -0,0 +1,6 @@
{
"extends": "airbnb",
"env": {
"node": true
}
}

5
src/.eslintrc Normal file
View File

@@ -0,0 +1,5 @@
{
"env": {
"browser": true
}
}

5
src/lib/.eslintrc Normal file
View File

@@ -0,0 +1,5 @@
{
rules: {
"import/prefer-default-export": 1
}
}