{ "disallowKeywords": ["with"], "disallowQuotedKeysInObjects": true, "disallowSpaceAfterObjectKeys": true, "disallowSpacesInFunction": {"beforeOpeningRoundBrace": true}, // Allow multiple variables to be declared in the same statement only if they // are all undefined, e.g., `var x, y, z;`. "disallowMultipleVarDecl": "exceptUndefined", "excludeFiles": ["dist/*", "**/node_modules/**", "**/third_party/**"], "maximumLineLength": { "value": 100, "allowUrlComments": true }, // For semantic actions, allow object properties to have underscores. "requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties", "requireBlocksOnNewline": 1, "requireCapitalizedConstructors": true, "requireParenthesesAroundIIFE": true, "requireSpaceAfterLineComment": true, "requireSpaceBetweenArguments": true, "requireSpacesInFunction": {"beforeOpeningCurlyBrace": true}, "validateQuoteMarks": { "mark": "'", "escape": true }, "validateIndentation": 2, "validateLineBreaks": "LF" }