New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@sentry/typescript

Package Overview
Dependencies
Maintainers
9
Versions
88
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sentry/typescript - npm Package Compare versions

Comparing version 4.5.3 to 5.0.0-rc.0

10

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc