Skip to content

Instantly share code, notes, and snippets.

@alexneamtu
Created August 30, 2019 09:27
Show Gist options
  • Save alexneamtu/0f5ceb03e6bfc7cc6693b588d5ca38b3 to your computer and use it in GitHub Desktop.
Save alexneamtu/0f5ceb03e6bfc7cc6693b588d5ca38b3 to your computer and use it in GitHub Desktop.
{
"extends": [
"tslint:latest",
"tslint-config-airbnb"
],
"rules": {
"no-trailing-whitespace": [true, "ignore-template-strings"],
"variable-name": [true, "allow-pascal-case"],
"no-implicit-dependencies": [true, "dev"],
"interface-name": [true, "always-prefix"],
"import-name": false,
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"object-literal-sort-keys": [true, "shorthand-first", "match-declaration-order"],
"ordered-imports": true,
"align": [
true,
"parameters",
"statements",
"members",
"elements"
],
"max-line-length": [true, {"limit": 140, "ignore-pattern": "\/\/ |`.*`"}],
"curly": [true, "ignore-same-line"],
"typedef": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment