Skip to content

Instantly share code, notes, and snippets.

@ludohenin
Created October 18, 2015 06:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ludohenin/7cadc69306008933d35e to your computer and use it in GitHub Desktop.
Save ludohenin/7cadc69306008933d35e to your computer and use it in GitHub Desktop.
{
"rules": {
"class-name": true,
"curly": false,
"eofline": true,
"indent": "spaces",
"max-line-length": [true, 140],
"member-ordering": [true,
"public-before-private",
"static-before-instance",
"variables-before-functions"
],
"no-arg": true,
"no-construct": true,
"no-duplicate-key": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-trailing-comma": true,
"no-trailing-whitespace": true,
"no-unused-expression": true,
"no-unused-variable": true,
"no-unreachable": true,
"no-use-before-declare": true,
"one-line": [true,
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
"quotemark": [true, "single"],
"semicolon": true,
"triple-equals": true,
"variable-name": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment