tslint-config-travix
Advanced tools
Comparing version 0.1.0 to 0.2.0
@@ -0,1 +1,3 @@ | ||
# [0.2.0](https://github.com/Travix-International/tslint-config-travix/compare/v0.1.0...v0.2.0) (2018-09-21) | ||
# [0.1.0](https://github.com/Travix-International/tslint-config-travix/compare/v0.0.30...v0.1.0) (2018-09-14) | ||
@@ -2,0 +4,0 @@ |
{ | ||
"name": "tslint-config-travix", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "TSLint configuration from Travix", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"lint:json": "eslint tslint.json" | ||
}, | ||
@@ -29,2 +30,4 @@ "repository": { | ||
"@semantic-release/git": "7.0.1", | ||
"eslint": "5.6.0", | ||
"eslint-plugin-json": "1.2.1", | ||
"semantic-release": "15.9.8", | ||
@@ -31,0 +34,0 @@ "simple-commit-message": "4.0.3", |
@@ -7,3 +7,3 @@ { | ||
], | ||
"defaultSeverity": "warning", | ||
"defaultSeverity": "error", | ||
"linterOptions": { | ||
@@ -27,4 +27,54 @@ "exclude": [ | ||
"array-destructuring" | ||
] | ||
], | ||
"whitespace": [ | ||
true, | ||
"check-branch", | ||
"check-decl", | ||
"check-operator", | ||
"check-module", | ||
"check-separator", | ||
"check-rest-spread", | ||
"check-type", | ||
"check-typecast", | ||
"check-type-operator", | ||
"check-preblock" | ||
], | ||
"typedef-whitespace": [ | ||
true, | ||
{ | ||
"call-signature": "nospace", | ||
"index-signature": "nospace", | ||
"parameter": "nospace", | ||
"property-declaration": "nospace", | ||
"variable-declaration": "nospace" | ||
}, | ||
{ | ||
"call-signature": "onespace", | ||
"index-signature": "onespace", | ||
"parameter": "onespace", | ||
"property-declaration": "onespace", | ||
"variable-declaration": "onespace" | ||
} | ||
], | ||
"indent": [ | ||
true, | ||
"spaces", | ||
2 | ||
], | ||
"variable-name": [ | ||
true, | ||
"allow-leading-underscore", | ||
"allow-pascal-case" | ||
], | ||
"trailing-comma": [ | ||
true, | ||
{ | ||
"multiline": "always", | ||
"singleline": "never" | ||
} | ||
], | ||
"interface-name": false, | ||
"no-console": false, | ||
"no-import-side-effect": true | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9568
7
78
10