Skip to content

Instantly share code, notes, and snippets.

@joseananio
Forked from lruckman/.prettierrc
Created June 29, 2019 00:40
Show Gist options
  • Save joseananio/9ad7c7b0a409528945c04be9929aa526 to your computer and use it in GitHub Desktop.
Save joseananio/9ad7c7b0a409528945c04be9929aa526 to your computer and use it in GitHub Desktop.
tslint + prettier + airbnb
{
"printWidth": 120,
"singleQuote": true
}
{
"name": "asp.net",
"version": "0.0.0",
"private": true,
"dependencies": {},
"devDependencies": {
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.16.0",
"typescript": "^3.1.6"
}
}
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-config-airbnb",
"tslint-config-prettier"
],
"jsRules": {},
"rules": {
"ordered-imports": false
},
"rulesDirectory": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment