@frontify/eslint-config-basic 0.19.0-next.3 → 0.19.0-next.4

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.
Files changed (2) hide show
  1. package/index.js +11 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -89,7 +89,7 @@ module.exports = {
89
89
  '@typescript-eslint/unbound-method': 'off',
90
90
  '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }],
91
91
  '@typescript-eslint/consistent-type-imports': [
92
- 'warn',
92
+ 'error',
93
93
  { prefer: 'type-imports', fixStyle: 'inline-type-imports' },
94
94
  ],
95
95
  '@typescript-eslint/no-misused-promises': [2, { checksVoidReturn: { attributes: false } }],
@@ -216,6 +216,14 @@ module.exports = {
216
216
  '*.spec.tsx',
217
217
  '*.spec.js',
218
218
  '*.spec.jsx',
219
+ '*.spec.cy.ts',
220
+ '*.spec.cy.tsx',
221
+ '*.spec.cy.js',
222
+ '*.spec.cy.jsx',
223
+ '*.spec.ct.ts',
224
+ '*.spec.ct.tsx',
225
+ '*.spec.ct.js',
226
+ '*.spec.ct.jsx',
219
227
  ],
220
228
  rules: {
221
229
  'no-unused-expressions': 'off',
@@ -349,6 +357,8 @@ module.exports = {
349
357
  'import/exports-last': 'off',
350
358
  'import/no-namespace': 'off',
351
359
  'import/extensions': 'off',
360
+ 'import/namespace': 'off',
361
+ 'import/default': 'off',
352
362
  'import/order': [
353
363
  'error',
354
364
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontify/eslint-config-basic",
3
- "version": "0.19.0-next.3",
3
+ "version": "0.19.0-next.4",
4
4
  "author": "Frontify Developers <developers@frontify.com>",
5
5
  "license": "MIT",
6
6
  "repository": {