Created
July 9, 2016 22:07
-
-
Save wegry/6b963edf4c7aedd26f999c6b47d85f80 to your computer and use it in GitHub Desktop.
Lightweight eslint config in yaml
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 | |
parserOptions: | |
ecmaVersion: 6 | |
sourceType: | |
module | |
ecmaFeatures: | |
jsx: true | |
rules: | |
quotes: | |
- error | |
- single | |
no-undef: | |
- error | |
no-redeclare: | |
- error | |
no-unreachable: | |
- error | |
no-implicit-globals: | |
- error |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment