@zendeskgarden/eslint-config
Advanced tools
Comparing version 36.0.0 to 37.0.0
{ | ||
"name": "@zendeskgarden/eslint-config", | ||
"version": "36.0.0", | ||
"version": "37.0.0", | ||
"description": "Garden ESLint config", | ||
@@ -30,8 +30,8 @@ "license": "Apache-2.0", | ||
"devDependencies": { | ||
"@babel/core": "7.23.6", | ||
"@babel/core": "7.23.7", | ||
"@babel/eslint-parser": "7.23.3", | ||
"@typescript-eslint/eslint-plugin": "6.15.0", | ||
"@typescript-eslint/parser": "6.15.0", | ||
"@typescript-eslint/eslint-plugin": "6.19.0", | ||
"@typescript-eslint/parser": "6.19.0", | ||
"eslint": "8.56.0", | ||
"eslint-plugin-jest": "27.6.0", | ||
"eslint-plugin-jest": "27.6.3", | ||
"eslint-plugin-jsx-a11y": "6.8.0", | ||
@@ -38,0 +38,0 @@ "eslint-plugin-node": "11.1.0", |
@@ -21,2 +21,3 @@ /** | ||
'prefer-destructuring': 0, | ||
'prefer-promise-reject-errors': 0, | ||
'require-await': 0, | ||
@@ -28,2 +29,4 @@ | ||
'@typescript-eslint/dot-notation': bestPractices['dot-notation'], | ||
// disallow using the `delete` operator on array values | ||
'@typescript-eslint/no-array-delete': 2, | ||
// requires that `.toString()` is only called on objects which provide useful information when stringified | ||
@@ -82,2 +85,5 @@ '@typescript-eslint/no-base-to-string': 2, | ||
'@typescript-eslint/prefer-nullish-coalescing': 0, | ||
// require using Error objects as Promise rejection reasons | ||
'@typescript-eslint/prefer-promise-reject-errors': | ||
bestPractices['prefer-promise-reject-errors'], | ||
// requires that private members are marked as `readonly` if they're never modified outside of the constructor | ||
@@ -84,0 +90,0 @@ '@typescript-eslint/prefer-readonly': 2, |
70943
1277