eslint-config-tui
Advanced tools
Comparing version 4.1.0 to 4.2.0
{ | ||
"name": "eslint-config-tui", | ||
"version": "4.1.0", | ||
"version": "4.2.0", | ||
"description": "ESLint sharable config for TUI components", | ||
@@ -10,3 +10,3 @@ "main": "index.js", | ||
"peerDependencies": { | ||
"eslint": "^7.22.0" | ||
"eslint": "^7.32.0" | ||
}, | ||
@@ -13,0 +13,0 @@ "repository": { |
@@ -29,3 +29,3 @@ module.exports = { | ||
'no-floating-decimal': 2, | ||
'no-implicit-coercion': [2, { 'boolean': false }], | ||
'no-implicit-coercion': [2, { 'boolean': false, 'disallowTemplateShorthand': false }], | ||
'no-implied-eval': 2, | ||
@@ -55,3 +55,3 @@ 'no-iterator': 2, | ||
'no-self-assign': [2, { 'props': true }], | ||
'no-sequences': 2, | ||
'no-sequences': [2, { 'allowInParentheses': false }], | ||
'no-throw-literal': 2, | ||
@@ -58,0 +58,0 @@ 'no-unsafe-finally': 2, |
14333