Created
June 13, 2020 00:55
-
-
Save asteffey/ab27e8e74a32c484fecc3800e0fe7ded to your computer and use it in GitHub Desktop.
My eslint config
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 | |
es2020: true | |
extends: 'eslint:recommended' | |
parserOptions: | |
ecmaVersion: 11 | |
sourceType: module | |
rules: | |
indent: | |
- error | |
- 2 | |
linebreak-style: | |
- error | |
- unix | |
quotes: | |
- error | |
- single | |
semi: | |
- error | |
- never |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment