Skip to content

Instantly share code, notes, and snippets.

@bennewton999
Last active January 19, 2016 16:28
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 bennewton999/e3a5e6c1a204f151234d to your computer and use it in GitHub Desktop.
Save bennewton999/e3a5e6c1a204f151234d to your computer and use it in GitHub Desktop.
My .eslintrc
{
"rules": {
"quotes": [1, "single"],
"indent": [2, 2],
"key-spacing": [2, { "afterColon": true }],
"block-spacing": [2, "always"],
"array-bracket-spacing": [2, "always"],
"camelcase": [2, {"properties": "always"}],
"comma-style": [2, "last"],
"computed-property-spacing": [2, "never"]
},
"globals": {
"angular": true,
"document": true,
"jQuery": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment