Created
December 18, 2014 11:42
-
-
Save stevoland/96aec04f3195b82beea2 to your computer and use it in GitHub Desktop.
.eslintrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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