@favorodera/eslint-config 0.0.15 → 0.0.16

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 -4
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -1108,10 +1108,7 @@ 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
+ "unicorn/prevent-abbreviations": ["error", { ignore: [/utils?/i, /props?/i] }],
1115
1112
  ...resolved.overrides
1116
1113
  }
1117
1114
  }];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@favorodera/eslint-config",
3
3
  "type": "module",
4
- "version": "0.0.15",
4
+ "version": "0.0.16",
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>",