1{
2  "extends": "google",
3  "parserOptions": {
4    "ecmaVersion": 6
5  },
6  "rules": {
7    "max-len": ["error", 100, {"ignoreUrls": true}],
8    "quotes": ["error", "single"],
9    "indent": ["error", 4, {"ArrayExpression": "first",
10                            "CallExpression": {"arguments": "first"},
11                            "SwitchCase": 1}],
12    "no-var": "off",
13    "prefer-rest-params": "off",
14    "require-jsdoc": "off"
15  }
16}
17