Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Commit

Permalink
Replace lint rules with tslint-config-standard
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeembrey committed May 16, 2016
1 parent e36bbf1 commit d2335d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 107 deletions.
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -60,6 +60,7 @@
"rimraf": "^2.5.2",
"ts-node": "^0.7.0",
"tslint": "^3.5.0",
"tslint-config-standard": "^1.0.0",
"typescript": "^1.8.7"
}
}
108 changes: 1 addition & 107 deletions tslint.json
@@ -1,109 +1,3 @@
{
"rules": {
"align": [
true,
"parameters",
"arguments"
],
"ban": false,
"class-name": true,
"comment-format": [
true,
"check-space",
"check-uppercase"
],
"curly": true,
"eofline": true,
"forin": true,
"indent": [
true,
"spaces"
],
"interface-name": false,
"jsdoc-format": true,
"label-position": true,
"label-undefined": true,
"max-line-length": [
true,
140
],
"member-access": true,
"member-ordering": [
true,
"public-before-private",
"static-before-instance",
"variables-before-functions"
],
"no-any": false,
"no-arg": true,
"no-bitwise": true,
"no-conditional-assignment": false,
"no-consecutive-blank-lines": true,
"no-construct": true,
"no-constructor-vars": true,
"no-debugger": true,
"no-duplicate-key": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-inferrable-types": false,
"no-internal-module": true,
"no-require-imports": false,
"no-shadowed-variable": false,
"no-string-literal": true,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": true,
"no-unreachable": true,
"no-unused-expression": true,
"no-unused-variable": true,
"no-use-before-declare": true,
"no-var-keyword": true,
"no-var-requires": false,
"object-literal-sort-keys": false,
"one-line": [
true,
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
"quotemark": [
true,
"single",
"avoid-escape"
],
"radix": true,
"semicolon": [true, "never"],
"switch-default": true,
"trailing-comma": false,
"triple-equals": [
true,
"allow-null-check"
],
"typedef": [false],
"typedef-whitespace": [
true,
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
}
],
"use-strict": [false],
"variable-name": [
true,
"check-format",
"allow-leading-underscore",
"ban-keywords"
],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-type"
]
}
"extends": "tslint-config-standard"
}

0 comments on commit d2335d9

Please sign in to comment.