{
  "extends": [
    "eslint:recommended",
    "plugin:import/errors",
    "plugin:import/warnings"
  ],
  "rules": {
    "comma-dangle": [2, "only-multiline"],
    "indent": ["error", 2, { "SwitchCase": 1, "ObjectExpression": 1 }],
    "keyword-spacing": ["error", { "before": true, "after": true}],
    "max-len": [1, {"ignoreComments": true, "code": 120}],
    "no-console": [2],
    "no-trailing-spaces": [2],
    "quotes": [2, "single", {"avoidEscape": true, "allowTemplateLiterals": true}],
    "semi": ["error", "always", { "omitLastInOneLineBlock": true}],
    "space-before-function-paren": ["error", "never"]
  },
  "env": {
    "commonjs": true
  },
  "globals": {
    "console": false
  }
}
