Created
November 10, 2017 18:10
-
-
Save philsinatra/04a854a7a9760ab579861488cdee4f4f to your computer and use it in GitHub Desktop.
ESLint Configuration File
This file contains hidden or 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": { | |
"es6": true, | |
"browser": true | |
}, | |
"extends": "eslint:recommended", | |
"rules": { | |
"no-console": 0, | |
"no-global-assign": ["error", { "exceptions": ["Object"] }], | |
"indent": 0, | |
"linebreak-style": ["error", "unix"], | |
"quotes": ["error", "single"], | |
"semi": ["error", "always"] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment