Created
May 25, 2018 13:16
-
-
Save babie/fe7d1c99fe04c90eac3498f9b7c97180 to your computer and use it in GitHub Desktop.
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
Show hidden characters
{ | |
"rulesDirectory": ["tslint-plugin-prettier"], | |
"plugins": ["prettier"], | |
"extends": [ | |
"tslint-config-airbnb", | |
"tslint-config-standard", | |
"tslint-config-prettier" | |
], | |
"linterOptions": { | |
"exclude": ["config/**/*.js", "node_modules/**/*.ts"] | |
}, | |
"rules": { | |
"prettier": [ | |
true, | |
{ | |
"singleQuote": true, | |
"semi": false | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment