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  }
12}
13