@cabify/eslint-config 3.0.1-beta-4 → 3.0.1-beta-6

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.
package/configs/base.js CHANGED
@@ -44,7 +44,6 @@ const configs = [
44
44
  const overrides = [
45
45
  isTSAvailable && {
46
46
  files: ['**/*.ts', '**/*.tsx'],
47
- excludedFiles: '*.d.ts',
48
47
  ...ts,
49
48
  },
50
49
  {
package/configs/ts.js CHANGED
@@ -136,4 +136,9 @@ module.exports = {
136
136
  'no-redeclare': 'off', // superseeded by @typescript-eslint/no-redeclare
137
137
  'no-shadow': 'off', // superseeded by @typescript-eslint/no-shadow
138
138
  },
139
+ overrides: [
140
+ {
141
+ excludedFiles: '*.d.ts',
142
+ },
143
+ ],
139
144
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabify/eslint-config",
3
- "version": "3.0.1-beta-4",
3
+ "version": "3.0.1-beta-6",
4
4
  "description": "ESLint config for Cabify Javascript projects",
5
5
  "scripts": {
6
6
  "build": "echo 'No build to perform'",