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

eslint-config-sentry

Package Overview
Dependencies
Maintainers
10
Versions
137
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-sentry - npm Package Compare versions

Comparing version 1.56.0 to 1.57.0

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

# 1.57.0 (2021-06-21)
**Note:** Version bump only for package eslint-config-sentry
# 1.56.0 (2021-06-21)

@@ -8,0 +16,0 @@

4

package.json
{
"name": "eslint-config-sentry",
"version": "1.56.0",
"version": "1.57.0",
"description": "sentry.io eslint config",

@@ -25,3 +25,3 @@ "main": "index.js",

"homepage": "https://github.com/getsentry/eslint-config-sentry#readme",
"gitHead": "ef4d9129eb258b669b3691cf79a816357d210e81"
"gitHead": "cb9ddc31e7a71d022e88bfec48d8541689dbc69e"
}

@@ -7,3 +7,3 @@ // Test

*/
// http://eslint.org/docs/rules/strict
// https://eslint.org/docs/rules/strict
strict: ['error', 'global'],

@@ -19,12 +19,12 @@

*/
// http://eslint.org/docs/rules/no-shadow
// https://eslint.org/docs/rules/no-shadow
'no-shadow': ['error'],
// http://eslint.org/docs/rules/no-shadow-restricted-names
// https://eslint.org/docs/rules/no-shadow-restricted-names
'no-shadow-restricted-names': ['error'],
// http://eslint.org/docs/rules/no-undef
// https://eslint.org/docs/rules/no-undef
'no-undef': ['error'],
// http://eslint.org/docs/rules/no-unused-vars
// https://eslint.org/docs/rules/no-unused-vars
'no-unused-vars': [

@@ -46,3 +46,3 @@ 'error',

// http://eslint.org/docs/rules/no-use-before-define
// https://eslint.org/docs/rules/no-use-before-define
'no-use-before-define': ['error', {functions: false}],

@@ -53,66 +53,66 @@

*/
// http://eslint.org/docs/rules/comma-dangle
// https://eslint.org/docs/rules/comma-dangle
'comma-dangle': ['off', 'always-multiline'],
// http://eslint.org/docs/rules/no-cond-assign
// https://eslint.org/docs/rules/no-cond-assign
'no-cond-assign': ['error', 'always'],
// http://eslint.org/docs/rules/no-console
// https://eslint.org/docs/rules/no-console
'no-console': ['warn'],
// http://eslint.org/docs/rules/no-debugger
// https://eslint.org/docs/rules/no-debugger
'no-debugger': ['warn'],
// http://eslint.org/docs/rules/no-alert
// https://eslint.org/docs/rules/no-alert
'no-alert': ['error'],
// http://eslint.org/docs/rules/no-constant-condition
// https://eslint.org/docs/rules/no-constant-condition
'no-constant-condition': ['warn'],
// http://eslint.org/docs/rules/no-dupe-keys
// https://eslint.org/docs/rules/no-dupe-keys
'no-dupe-keys': ['error'],
// http://eslint.org/docs/rules/no-duplicate-case
// https://eslint.org/docs/rules/no-duplicate-case
'no-duplicate-case': ['error'],
// http://eslint.org/docs/rules/no-empty
// https://eslint.org/docs/rules/no-empty
'no-empty': ['error'],
// http://eslint.org/docs/rules/no-ex-assign
// https://eslint.org/docs/rules/no-ex-assign
'no-ex-assign': ['error'],
// http://eslint.org/docs/rules/no-extra-boolean-cast
// https://eslint.org/docs/rules/no-extra-boolean-cast
'no-extra-boolean-cast': ['off'],
// http://eslint.org/docs/rules/no-extra-semi
// https://eslint.org/docs/rules/no-extra-semi
'no-extra-semi': ['error'],
// http://eslint.org/docs/rules/no-func-assign
// https://eslint.org/docs/rules/no-func-assign
'no-func-assign': ['error'],
// http://eslint.org/docs/rules/no-inner-declarations
// https://eslint.org/docs/rules/no-inner-declarations
'no-inner-declarations': ['error'],
// http://eslint.org/docs/rules/no-invalid-regexp
// https://eslint.org/docs/rules/no-invalid-regexp
'no-invalid-regexp': ['error'],
// http://eslint.org/docs/rules/no-irregular-whitespace
// https://eslint.org/docs/rules/no-irregular-whitespace
'no-irregular-whitespace': ['error'],
// http://eslint.org/docs/rules/no-obj-calls
// https://eslint.org/docs/rules/no-obj-calls
'no-obj-calls': ['error'],
// http://eslint.org/docs/rules/no-sparse-arrays
// https://eslint.org/docs/rules/no-sparse-arrays
'no-sparse-arrays': ['error'],
// http://eslint.org/docs/rules/no-unreachable
// https://eslint.org/docs/rules/no-unreachable
'no-unreachable': ['error'],
// http://eslint.org/docs/rules/semi.html
// https://eslint.org/docs/rules/semi.html
semi: ['error', 'always'],
// http://eslint.org/docs/rules/use-isnan
// https://eslint.org/docs/rules/use-isnan
'use-isnan': ['error'],
// http://eslint.org/docs/rules/block-scoped-var
// https://eslint.org/docs/rules/block-scoped-var
'block-scoped-var': ['error'],

@@ -123,12 +123,12 @@

*/
// http://eslint.org/docs/rules/consistent-return
// https://eslint.org/docs/rules/consistent-return
'consistent-return': ['error'],
// http://eslint.org/docs/rules/curly
// https://eslint.org/docs/rules/curly
curly: ['error', 'all'],
// http://eslint.org/docs/rules/default-case
// https://eslint.org/docs/rules/default-case
'default-case': ['error'],
// http://eslint.org/docs/rules/dot-notation
// https://eslint.org/docs/rules/dot-notation
'dot-notation': [

@@ -141,93 +141,93 @@ 'error',

// http://eslint.org/docs/rules/eqeqeq
// https://eslint.org/docs/rules/eqeqeq
eqeqeq: ['error'],
// http://eslint.org/docs/rules/guard-for-in [REVISIT ME]
// https://eslint.org/docs/rules/guard-for-in [REVISIT ME]
'guard-for-in': ['off'],
// http://eslint.org/docs/rules/jsx-quotes
// https://eslint.org/docs/rules/jsx-quotes
'jsx-quotes': ['error', 'prefer-double'],
// http://eslint.org/docs/rules/no-caller
// https://eslint.org/docs/rules/no-caller
'no-caller': ['error'],
// http://eslint.org/docs/rules/no-else-return [REVISIT ME]
// https://eslint.org/docs/rules/no-else-return [REVISIT ME]
'no-else-return': ['off'],
// http://eslint.org/docs/rules/no-eq-null
// https://eslint.org/docs/rules/no-eq-null
'no-eq-null': ['error'],
// http://eslint.org/docs/rules/no-eval
// https://eslint.org/docs/rules/no-eval
'no-eval': ['error'],
// http://eslint.org/docs/rules/no-extend-native
// https://eslint.org/docs/rules/no-extend-native
'no-extend-native': ['error'],
// http://eslint.org/docs/rules/no-extra-bind
// https://eslint.org/docs/rules/no-extra-bind
'no-extra-bind': ['error'],
// http://eslint.org/docs/rules/no-fallthrough
// https://eslint.org/docs/rules/no-fallthrough
'no-fallthrough': ['error'],
// http://eslint.org/docs/rules/no-floating-decimal
// https://eslint.org/docs/rules/no-floating-decimal
'no-floating-decimal': ['error'],
// http://eslint.org/docs/rules/no-implied-eval
// https://eslint.org/docs/rules/no-implied-eval
'no-implied-eval': ['error'],
// http://eslint.org/docs/rules/no-lone-blocks
// https://eslint.org/docs/rules/no-lone-blocks
'no-lone-blocks': ['error'],
// http://eslint.org/docs/rules/no-loop-func
// https://eslint.org/docs/rules/no-loop-func
'no-loop-func': ['error'],
// http://eslint.org/docs/rules/no-multi-str
// https://eslint.org/docs/rules/no-multi-str
'no-multi-str': ['error'],
// http://eslint.org/docs/rules/no-native-reassign
// https://eslint.org/docs/rules/no-native-reassign
'no-native-reassign': ['error'],
// http://eslint.org/docs/rules/no-new
// https://eslint.org/docs/rules/no-new
'no-new': ['error'],
// http://eslint.org/docs/rules/no-new-func
// https://eslint.org/docs/rules/no-new-func
'no-new-func': ['error'],
// http://eslint.org/docs/rules/no-new-wrappers
// https://eslint.org/docs/rules/no-new-wrappers
'no-new-wrappers': ['error'],
// http://eslint.org/docs/rules/no-octal
// https://eslint.org/docs/rules/no-octal
'no-octal': ['error'],
// http://eslint.org/docs/rules/no-octal-escape
// https://eslint.org/docs/rules/no-octal-escape
'no-octal-escape': ['error'],
// http://eslint.org/docs/rules/no-param-reassign [REVISIT ME]
// https://eslint.org/docs/rules/no-param-reassign [REVISIT ME]
'no-param-reassign': ['off'],
// http://eslint.org/docs/rules/no-proto
// https://eslint.org/docs/rules/no-proto
'no-proto': ['error'],
// http://eslint.org/docs/rules/no-redeclare
// https://eslint.org/docs/rules/no-redeclare
'no-redeclare': ['error'],
// http://eslint.org/docs/rules/no-return-assign
// https://eslint.org/docs/rules/no-return-assign
'no-return-assign': ['error'],
// http://eslint.org/docs/rules/no-script-url
// https://eslint.org/docs/rules/no-script-url
'no-script-url': ['error'],
// http://eslint.org/docs/rules/no-self-compare
// https://eslint.org/docs/rules/no-self-compare
'no-self-compare': ['error'],
// http://eslint.org/docs/rules/no-sequences
// https://eslint.org/docs/rules/no-sequences
'no-sequences': ['error'],
// http://eslint.org/docs/rules/no-throw-literal
// https://eslint.org/docs/rules/no-throw-literal
'no-throw-literal': ['error'],
// http://eslint.org/docs/rules/no-with
// https://eslint.org/docs/rules/no-with
'no-with': ['error'],
// http://eslint.org/docs/rules/quotes.html
// https://eslint.org/docs/rules/quotes.html
quotes: [

@@ -241,12 +241,12 @@ 'error',

// http://eslint.org/docs/rules/radix
// https://eslint.org/docs/rules/radix
radix: ['error'],
// http://eslint.org/docs/rules/space-in-brackets.html
// https://eslint.org/docs/rules/space-in-brackets.html
'computed-property-spacing': ['error', 'never'],
// http://eslint.org/docs/rules/space-in-brackets.html
// https://eslint.org/docs/rules/space-in-brackets.html
'array-bracket-spacing': ['error', 'never'],
// http://eslint.org/docs/rules/space-in-brackets.html
// https://eslint.org/docs/rules/space-in-brackets.html
'object-curly-spacing': ['error', 'never'],

@@ -257,17 +257,17 @@

// http://eslint.org/docs/rules/space-infix-ops.html
// https://eslint.org/docs/rules/space-infix-ops.html
'space-infix-ops': ['error'],
// http://eslint.org/docs/rules/vars-on-top
// https://eslint.org/docs/rules/vars-on-top
'vars-on-top': ['off'],
// http://eslint.org/docs/rules/wrap-iife
// https://eslint.org/docs/rules/wrap-iife
'wrap-iife': ['error', 'any'],
// https://eslint.org/docs/rules/arrow-body-style
"arrow-body-style": ["error", "as-needed"],
'arrow-body-style': ['error', 'as-needed'],
// http://eslint.org/docs/rules/yoda
// https://eslint.org/docs/rules/yoda
yoda: ['error'],
},
};

@@ -7,8 +7,8 @@ /**

rules: {
// http://eslint.org/docs/rules/no-var
// https://eslint.org/docs/rules/no-var
'no-var': ['error'],
// http://eslint.org/docs/rules/prefer-const
// https://eslint.org/docs/rules/prefer-const
'prefer-const': ['error'],
},
};
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