@favorodera/eslint-config 0.0.13 → 0.0.15

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 +4 -1
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -1108,6 +1108,10 @@ async function unicorn(options) {
1108
1108
  rules: {
1109
1109
  ...baseRules,
1110
1110
  "unicorn/filename-case": "off",
1111
+ "unicorn/prevent-abbreviations": ["error", { allowList: {
1112
+ props: true,
1113
+ utils: true
1114
+ } }],
1111
1115
  ...resolved.overrides
1112
1116
  }
1113
1117
  }];
@@ -1286,7 +1290,6 @@ async function vue(options) {
1286
1290
  "vue/prefer-single-event-payload": "error",
1287
1291
  "vue/prefer-use-template-ref": "error",
1288
1292
  "vue/require-explicit-slots": "error",
1289
- "vue/require-macro-variable-name": "error",
1290
1293
  "vue/slot-name-casing": ["error", "kebab-case"],
1291
1294
  "vue/v-for-delimiter-style": ["error", "in"],
1292
1295
  ...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.13",
4
+ "version": "0.0.15",
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>",