wjec-one 4.2.0-alpha.2 → 5.0.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -55,13 +55,13 @@ const mainConfig = {
55
55
  'comma-dangle': ['error', 'never'],
56
56
  'comma-spacing': 'error',
57
57
  'comma-style': 'error',
58
- 'complexity': ['warn', { max: 15 }],
58
+ 'complexity': ['warn', { max: 20 }],
59
59
  'computed-property-spacing': 'error',
60
60
  'consistent-return': ['error', { treatUndefinedAsUnspecified: true }],
61
61
  curly: 'error',
62
62
  'eol-last': 'error',
63
63
  eqeqeq: 'error',
64
- 'func-call-spacing': 'error',
64
+ // 'func-call-spacing': 'error',
65
65
  indent: ['error', 2, { SwitchCase: 1, VariableDeclarator: 'first' }],
66
66
  'key-spacing': 'error',
67
67
  'keyword-spacing': 'error',
@@ -189,7 +189,7 @@ const mainConfig = {
189
189
  caughtErrors: 'all',
190
190
  caughtErrorsIgnorePattern: '^_',
191
191
  destructuredArrayIgnorePattern: '^_',
192
- varsIgnorePattern: '^React$|^_|^jsx$',
192
+ varsIgnorePattern: '^React$|^_',
193
193
  ignoreRestSiblings: true
194
194
  }],
195
195
  '@typescript-eslint/no-use-before-define': ['error', { classes: true, functions: false, variables: false }],