Last active
May 4, 2018 19:39
-
-
Save tnerbovik/33a8ba333fc26445075edc869b75633e to your computer and use it in GitHub Desktop.
prettier-eslint-tslint
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
Show hidden characters
{ | |
"extends": ["plugin:prettier/recommended"] | |
} |
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
{ | |
"printWidth": 120, | |
"tabWidth": 4, | |
"singleQuote": true, | |
"trailingComma": "all", | |
"bracketSpacing": true, | |
"semi": true, | |
"useTabs": false | |
} |
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
{ | |
"extends": ["tslint-eslint-rules", "tslint-config-prettier"] | |
} |
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
yarn add --dev prettier tslint eslint tslint-config-prettier tslint-eslint-rules |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment