Skip to content

Commit

Permalink
Extend from tslint:latest (#19309)
Browse files Browse the repository at this point in the history
* Extend from tslint:latest

* Move more rules to "not doing"
  • Loading branch information
Andy authored Oct 31, 2017
1 parent f4236ec commit 9b215f3
Showing 1 changed file with 52 additions and 1 deletion.
53 changes: 52 additions & 1 deletion tslint.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"extends": "tslint:latest",
"rulesDirectory": "built/local/tslint/rules",
"rules": {
"array-type": [true, "array"],
Expand Down Expand Up @@ -69,6 +70,56 @@
"check-separator",
"check-type"
],
"no-string-literal": true

// TODO
"arrow-parens": false, // [true, "ban-single-arg-parens"]
"arrow-return-shorthand": false,
"ban-comma-operator": false,
"ban-types": false,
"callable-types": false,
"forin": false,
"member-access": false, // [true, "no-public"]
"no-conditional-assignment": false,
"no-console": false,
"no-debugger": false,
"no-empty": false,
"no-empty-interface": false,
"no-eval": false,
"no-implicit-dependencies": false,
"no-invalid-template-strings": false,
"no-object-literal-type-assertion": false,
"no-shadowed-variable": false,
"no-submodule-imports": false,
"no-this-assignment": false,
"no-unused-expression": false,
"no-unnecessary-initializer": false,
"no-var-requires": false,
"object-literal-key-quotes": false,
"only-arrow-functions": false,
"ordered-imports": false,
"prefer-conditional-expression": false,
"prefer-for-of": false,
"radix": false,
"space-before-function-paren": false,
"trailing-comma": false,
"unified-signatures": false,
"variable-name": false,

// These should be done automatically by a formatter. https://github.com/Microsoft/TypeScript/issues/18340
"align": false,
"eofline": false,
"max-line-length": false,
"no-consecutive-blank-lines": false,

// Not doing
"interface-name": false,
"max-classes-per-file": false,
"member-ordering": false,
"no-angle-bracket-type-assertion": false,
"no-bitwise": false,
"no-namespace": false,
"no-reference": false,
"object-literal-sort-keys": false,
"one-variable-per-declaration": false
}
}

0 comments on commit 9b215f3

Please sign in to comment.