Skip to content

Instantly share code, notes, and snippets.

@babie
Created May 25, 2018 13:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save babie/fe7d1c99fe04c90eac3498f9b7c97180 to your computer and use it in GitHub Desktop.
Save babie/fe7d1c99fe04c90eac3498f9b7c97180 to your computer and use it in GitHub Desktop.
{
"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