@favorodera/eslint-config 0.0.17 → 0.0.19

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/dist/index.mjs +1 -2
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -209,7 +209,6 @@ async function javascript(options) {
209
209
  "no-console": ["error", { allow: ["warn", "error"] }],
210
210
  "no-constructor-return": "error",
211
211
  "no-continue": "error",
212
- "no-duplicate-imports": ["error", { includeExports: true }],
213
212
  "no-else-return": "error",
214
213
  "no-empty": ["error", { allowEmptyCatch: true }],
215
214
  "no-eq-null": "error",
@@ -1109,6 +1108,7 @@ async function unicorn(options) {
1109
1108
  ...baseRules,
1110
1109
  "unicorn/filename-case": "off",
1111
1110
  "unicorn/prevent-abbreviations": "off",
1111
+ "unicorn/no-process-exit": "off",
1112
1112
  ...resolved.overrides
1113
1113
  }
1114
1114
  }];
@@ -1286,7 +1286,6 @@ async function vue(options) {
1286
1286
  "vue/prefer-separate-static-class": "error",
1287
1287
  "vue/prefer-single-event-payload": "error",
1288
1288
  "vue/prefer-use-template-ref": "error",
1289
- "vue/require-explicit-slots": "error",
1290
1289
  "vue/slot-name-casing": ["error", "kebab-case"],
1291
1290
  "vue/v-for-delimiter-style": ["error", "in"],
1292
1291
  ...resolved.overrides
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@favorodera/eslint-config",
3
3
  "type": "module",
4
- "version": "0.0.17",
4
+ "version": "0.0.19",
5
5
  "private": false,
6
6
  "description": "Opinionated, type-safe flat ESLint configuration factory for Vue, TypeScript, Tailwind, and more.",
7
7
  "author": "Favour Emeka <favorodera@gmail.com>",