@sentry/typescript
Advanced tools
Comparing version 4.5.3 to 5.0.0-rc.0
{ | ||
"name": "@sentry/typescript", | ||
"version": "4.5.3", | ||
"version": "5.0.0-rc.0", | ||
"description": "Typescript configuration used at Sentry", | ||
@@ -9,3 +9,3 @@ "repository": "git://github.com/getsentry/raven-js.git", | ||
"license": "BSD-3-Clause", | ||
"private": false, | ||
"private _": false, | ||
"publishConfig": { | ||
@@ -15,3 +15,4 @@ "access": "public" | ||
"dependencies": { | ||
"tslint-config-prettier": "^1.12.0" | ||
"tslint-config-prettier": "^1.18.0", | ||
"tslint-consistent-codestyle": "^1.15.1" | ||
}, | ||
@@ -21,3 +22,6 @@ "peerDependencies": { | ||
"typescript": "^3.2.0" | ||
}, | ||
"scripts": { | ||
"link:yarn": "yarn link" | ||
} | ||
} |
{ | ||
"extends": ["tslint:all", "tslint-config-prettier"], | ||
"extends": ["tslint:all", "tslint-config-prettier", "tslint-consistent-codestyle"], | ||
"rules": { | ||
@@ -18,2 +18,4 @@ // This rule has side effects and must be disabled | ||
"no-inferrable-types": false, | ||
"ban-ts-ignore": false, | ||
"increment-decrement": false, | ||
// These are too strict in tslint:all | ||
@@ -24,9 +26,45 @@ "comment-format": [true, "check-space"], | ||
{ | ||
"classes": true, | ||
"enums": true, | ||
"enum-members": true, | ||
"functions": true, | ||
"interfaces": true, | ||
"methods": { "tags": { "content": {}, "existence": ["inheritDoc"] } }, | ||
"properties": { "tags": { "content": {}, "existence": ["inheritDoc"] } } | ||
"classes": { | ||
"tags": { | ||
"content": {}, | ||
"existence": ["inheritDoc", "hidden"] | ||
} | ||
}, | ||
"enums": { | ||
"tags": { | ||
"content": {}, | ||
"existence": ["inheritDoc", "hidden"] | ||
} | ||
}, | ||
"enum-members": { | ||
"tags": { | ||
"content": {}, | ||
"existence": ["inheritDoc", "hidden"] | ||
} | ||
}, | ||
"functions": { | ||
"tags": { | ||
"content": {}, | ||
"existence": ["inheritDoc", "hidden"] | ||
} | ||
}, | ||
"interfaces": { | ||
"tags": { | ||
"content": {}, | ||
"existence": ["inheritDoc", "hidden"] | ||
} | ||
}, | ||
"methods": { | ||
"tags": { | ||
"content": {}, | ||
"existence": ["inheritDoc", "hidden"] | ||
} | ||
}, | ||
"properties": { | ||
"tags": { | ||
"content": {}, | ||
"existence": ["inheritDoc", "hidden"] | ||
}, | ||
"locations": "instance" | ||
} | ||
} | ||
@@ -39,4 +77,10 @@ ], | ||
"typedef": [true, "call-signature", "parameter", "property-declaration", "member-variable-declaration"], | ||
"variable-name": [true, "check-format", "allow-leading-underscore", "ban-keywords"] | ||
"variable-name": [true, "check-format", "allow-leading-underscore", "ban-keywords"], | ||
"naming-convention": [ | ||
true, | ||
// this config will apply to properties AND methods, if you only need it for properties, use "property" instead of "member" | ||
{ "type": "member", "modifiers": "protected", "leadingUnderscore": "require" }, | ||
{ "type": "member", "modifiers": "private", "leadingUnderscore": "require" } | ||
] | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
6890
115
4
1
+ Added@fimbul/bifrost@0.21.0(transitive)
+ Added@fimbul/ymir@0.21.0(transitive)
+ Addedget-caller-file@2.0.5(transitive)
+ Addedinversify@5.1.1(transitive)
+ Addedreflect-metadata@0.1.14(transitive)
+ Addedtslint-consistent-codestyle@1.16.0(transitive)
+ Addedtsutils@3.21.0(transitive)