Updated our eslint config file. Still extends airbnb, but have changed indent rule and dropped some other rules.
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user