diff --git a/tslint/bases/base.tslint.json b/tslint/bases/base.tslint.json index fa8f3ed..02d172b 100644 --- a/tslint/bases/base.tslint.json +++ b/tslint/bases/base.tslint.json @@ -12,7 +12,7 @@ "ban": [true, "fit", "fdescribe"], "class-name": true, "curly": true, - "eofline": false, + "eofline": true, "forin": true, "interface-name": [true, "never-prefix"], "jsdoc-format": true, diff --git a/tslint/bases/tslint.json b/tslint/bases/tslint.json deleted file mode 100644 index a969d93..0000000 --- a/tslint/bases/tslint.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "extends": ["./base.tslint.json"], - "rules": { - "tinkoff-condition-breaks": { - "options": { - "maxWidth": 60 - } - }, - "comment-format": [true, "check-space"], - "indent": [true, "spaces"], - "max-line-length": [true, 120], - "no-trailing-whitespace": true, - "one-line": [ - true, - "check-open-brace", - "check-catch", - "check-else", - "check-finally", - "check-whitespace" - ], - "quotemark": [true, "single"], - "semicolon": true, - "typedef-whitespace": [ - true, - { - "call-signature": "nospace", - "index-signature": "nospace", - "parameter": "nospace", - "property-declaration": "nospace", - "variable-declaration": "nospace" - }, - { - "call-signature": "space", - "index-signature": "space", - "parameter": "space", - "property-declaration": "space", - "variable-declaration": "space" - } - ], - "whitespace": [ - true, - "check-branch", - "check-decl", - "check-operator", - "check-separator", - "check-type", - "check-preblock" - ] - } -}