@favorodera/eslint-config 0.0.18 → 0.1.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.
package/README.md CHANGED
@@ -4,6 +4,7 @@
4
4
  <p>
5
5
  <a href="https://github.com/favorodera/eslint-config/blob/main/LICENSE"><img src="https://img.shields.io/github/license/favorodera/eslint-config.svg?style=plastic&label=License&color=blue" alt="License"></a>
6
6
  <a href="https://github.com/favorodera/eslint-config/stargazers"><img src="https://img.shields.io/github/stars/favorodera/eslint-config.svg?style=plastic&label=Stars&color=blue" alt="GitHub Stars"></a>
7
+ <a href="https://npmx.dev/package/@favorodera/eslint-config"><img src="https://img.shields.io/npm/dw/@favorodera/eslint-config.svg?style=plastic&label=NPM%20Downloads&color=blue" alt="NPM Downloads"></a>
7
8
  <a href="https://npmx.dev/package/@favorodera/eslint-config"><img src="https://img.shields.io/npm/v/@favorodera/eslint-config.svg?style=plastic&label=Version&color=blue" alt="NPM Version"></a>
8
9
  </p>
9
10
  </div>
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",
@@ -933,7 +932,7 @@ async function tailwind(options) {
933
932
  return [{
934
933
  name: "favorodera/tailwind/setup",
935
934
  plugins: { tailwind: tailwindPlugin },
936
- settings: { tailwindcss: resolved.settings }
935
+ settings: { tailwind: resolved.settings }
937
936
  }, {
938
937
  files: resolved.files,
939
938
  name: "favorodera/tailwind/rules",
@@ -1287,7 +1286,6 @@ async function vue(options) {
1287
1286
  "vue/prefer-separate-static-class": "error",
1288
1287
  "vue/prefer-single-event-payload": "error",
1289
1288
  "vue/prefer-use-template-ref": "error",
1290
- "vue/require-explicit-slots": "error",
1291
1289
  "vue/slot-name-casing": ["error", "kebab-case"],
1292
1290
  "vue/v-for-delimiter-style": ["error", "in"],
1293
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.18",
4
+ "version": "0.1.0",
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>",