Updated our eslint config file. Still extends airbnb, but have changed indent rule and dropped some other rules.

This commit is contained in:
2018-02-07 13:47:11 +01:00
parent a40d4f7cd5
commit 444295d5d1

View File

@@ -1,3 +1,12 @@
{
"extends": "airbnb-base"
}
"extends": [
"airbnb-base"
],
"rules": {
"indent": ["error", 3],
"prefer-destructuring": 0,
"camelcase": 0,
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0
}
}