Last active
February 27, 2018 23:31
-
-
Save jrop/50b0e7b908436cd793f9ae8a936d4b7e to your computer and use it in GitHub Desktop.
linter options
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
extends: eslint:recommended | |
parserOptions: | |
ecmaVersion: 8 | |
sourceType: module | |
env: | |
es6: true | |
node: true | |
rules: | |
no-extra-semi: 'off' |
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
# parser: typescript | |
useTabs: true | |
semi: false | |
singleQuote: true | |
trailingComma: es5 | |
bracketSpacing: false | |
jsxBracketSameLine: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment