vue-linters-config 0.5.2 → 0.5.4

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.js +12 -9
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -40,15 +40,16 @@ function s(e) {
40
40
  }
41
41
  const i = {
42
42
  ignores: [
43
- "**/dist/",
44
- "**/dev-dist/",
45
- "**/coverage/",
46
- "**/public/",
47
- "**/storybook-static/",
48
- "**/node_modules/",
49
- "**/package-lock.json",
50
- "**/android/",
51
- "**/.storybook/"
43
+ "dist/",
44
+ "dev-dist/",
45
+ "coverage/",
46
+ "public/",
47
+ "storybook-static/",
48
+ "node_modules/",
49
+ "android/",
50
+ ".storybook/",
51
+ "package-lock.json",
52
+ "vitest.setup.ts"
52
53
  ]
53
54
  }, a = {
54
55
  settings: {
@@ -238,6 +239,8 @@ const i = {
238
239
  "sonarjs/pseudo-random": "off",
239
240
  "sonarjs/no-misleading-array-reverse": "off",
240
241
  "sonarjs/function-return-type": "off",
242
+ "unicorn/prefer-includes": "off",
243
+ "unicorn/no-array-sort": "off",
241
244
  "unicorn/prevent-abbreviations": "off",
242
245
  "unicorn/no-null": "off",
243
246
  "unicorn/filename-case": ["error", { cases: { camelCase: !0, pascalCase: !0 } }],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-linters-config",
3
- "version": "0.5.2",
3
+ "version": "0.5.4",
4
4
  "type": "module",
5
5
  "description": "Vue 3 linters config for eslint, prettier, stylelint",
6
6
  "author": "Aleksandr Dergunov <dergunovs@mail.ru>",