Skip to content

Instantly share code, notes, and snippets.

@stevoland
Created December 18, 2014 11:42
Show Gist options
  • Save stevoland/96aec04f3195b82beea2 to your computer and use it in GitHub Desktop.
Save stevoland/96aec04f3195b82beea2 to your computer and use it in GitHub Desktop.
.eslintrc
{
"env": {
"browser": true,
"amd": true
},
"rules": {
"quotes": [2, "single"],
"no-underscore-dangle": [0],
"no-trailing-spaces": [2],
"no-mixed-spaces-and-tabs": [2],
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
"max-len": [2, 120, 2],
"eol-last": [2],
"no-unused-expressions": [0]
},
"globals": {
"requirejs": false,
"require": false,
"before": false,
"after": false,
"beforeEach": false,
"afterEach": false,
"it": false,
"expect": false,
"describe": false,
"sinon": false,
"CSSRule": false,
"assert": false,
"Modernizr": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment