.eslintrc.json 245 Bytes
Newer Older
Cole Bemis's avatar
Cole Bemis committed
1 2 3 4 5 6 7 8 9 10 11 12
{
  "extends": "airbnb-base",
  "plugins": [
    "import"
  ],
  "rules": {
    "no-use-before-define": "off",
    "arrow-parens": ["error", "as-needed"],
    "no-shadow": "off",
    "no-console": ["error", { "allow": ["warn", "error"] }]
  }
}