{
  "env": {
    "browser": true
  },
  "extends": [
    "eslint-config-airbnb-es5"
  ],
  "globals": {},
  "rules": {
    "comma-dangle": ["warn", {
      "arrays": "only-multiline",
      "objects": "only-multiline",
      "imports": "ignore",
      "exports": "ignore",
      "functions": "ignore"
    }],
    "max-len": ["warn", { "code": 100, "ignoreComments": true }],
    "quotes": ["warn", "single", { "avoidEscape": true }]
  }
}
