diff --git a/seasoned_api/.eslintrc.json b/seasoned_api/.eslintrc.json index 6f67564..d7e47e6 100644 --- a/seasoned_api/.eslintrc.json +++ b/seasoned_api/.eslintrc.json @@ -1,3 +1,12 @@ { - "extends": "airbnb-base" -} \ No newline at end of file + "extends": [ + "airbnb-base" + ], + "rules": { + "indent": ["error", 3], + "prefer-destructuring": 0, + "camelcase": 0, + "import/no-unresolved": 0, + "import/no-extraneous-dependencies": 0 + } +}