andorx
3/5/2015 - 2:00 AM

.jscsrc

{
  "preset": "google",
  "fileExtensions": [ ".js", "jscs" ],

  "requireParenthesesAroundIIFE": true,
  "requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",

  "maximumLineLength": 120,
  "validateLineBreaks": "LF",
  "validateIndentation": 2,

  "disallowKeywords": ["with"],
  "disallowSpacesInsideObjectBrackets": null,
  "disallowImplicitTypeConversion": ["string"],

  "disallowMultipleVarDecl": "strict",

  "safeContextKeyword": "self",

  "excludeFiles": [
    "test/data/**"
  ]
}