// Use this file as a starting point for your project's .eslintrc.
// Copy this file, and add rule overrides as needed.
{
  "extends": "airbnb/base",
  "globals": {
    "$": false
  },
  "rules": {
    "max-len": [
      "error",
      120,
      {
        "ignoreComments": true
      }
    ]
  }
}
