@luxass/eslint-config 5.2.0 → 5.2.1

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/dist/index.d.ts CHANGED
@@ -7221,6 +7221,16 @@ interface RuleOptions {
7221
7221
  * @see https://eslint.vuejs.org/rules/no-mutating-props.html
7222
7222
  */
7223
7223
  'vue/no-mutating-props'?: Linter.RuleEntry<VueNoMutatingProps>;
7224
+ /**
7225
+ * Disallow negated conditions in `<template>`
7226
+ * @see https://eslint.vuejs.org/rules/no-negated-condition.html
7227
+ */
7228
+ 'vue/no-negated-condition'?: Linter.RuleEntry<[]>;
7229
+ /**
7230
+ * disallow negated conditions in v-if/v-else
7231
+ * @see https://eslint.vuejs.org/rules/no-negated-v-if-condition.html
7232
+ */
7233
+ 'vue/no-negated-v-if-condition'?: Linter.RuleEntry<[]>;
7224
7234
  /**
7225
7235
  * disallow parsing errors in `<template>`
7226
7236
  * @see https://eslint.vuejs.org/rules/no-parsing-error.html
@@ -15911,6 +15921,7 @@ type VueNoDeprecatedRouterLinkTagProp = [] | [{
15911
15921
  // ----- vue/no-deprecated-slot-attribute -----
15912
15922
  type VueNoDeprecatedSlotAttribute = [] | [{
15913
15923
  ignore?: string[];
15924
+ ignoreParents?: string[];
15914
15925
  }];
15915
15926
  // ----- vue/no-dupe-keys -----
15916
15927
  type VueNoDupeKeys = [] | [{
package/dist/index.js CHANGED
@@ -41,6 +41,8 @@ const GLOB_GRAPHQL = "**/*.{g,graph}ql";
41
41
  const GLOB_MARKDOWN_CODE = `${GLOB_MARKDOWN}/${GLOB_SRC}`;
42
42
  const GLOB_TESTS = [
43
43
  `**/__tests__/**/*.${GLOB_SRC_EXT}`,
44
+ `**/test/**/*.${GLOB_SRC_EXT}`,
45
+ `**/tests/**/*.${GLOB_SRC_EXT}`,
44
46
  `**/*.spec.${GLOB_SRC_EXT}`,
45
47
  `**/*.test.${GLOB_SRC_EXT}`,
46
48
  `**/*.bench.${GLOB_SRC_EXT}`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luxass/eslint-config",
3
- "version": "5.2.0",
3
+ "version": "5.2.1",
4
4
  "description": "ESLint config for @luxass",
5
5
  "type": "module",
6
6
  "author": {
@@ -89,11 +89,11 @@
89
89
  "@typescript-eslint/parser": "^8.38.0",
90
90
  "@vitest/eslint-plugin": "^1.3.4",
91
91
  "eslint-config-flat-gitignore": "^2.1.0",
92
- "eslint-flat-config-utils": "^2.1.0",
92
+ "eslint-flat-config-utils": "^2.1.1",
93
93
  "eslint-merge-processors": "^2.0.0",
94
94
  "eslint-plugin-antfu": "^3.1.1",
95
95
  "eslint-plugin-import-lite": "^0.3.0",
96
- "eslint-plugin-jsdoc": "^52.0.0",
96
+ "eslint-plugin-jsdoc": "^52.0.1",
97
97
  "eslint-plugin-jsonc": "^2.20.1",
98
98
  "eslint-plugin-n": "^17.21.3",
99
99
  "eslint-plugin-perfectionist": "^4.15.0",
@@ -102,7 +102,7 @@
102
102
  "eslint-plugin-toml": "^0.12.0",
103
103
  "eslint-plugin-unicorn": "^60.0.0",
104
104
  "eslint-plugin-unused-imports": "^4.1.4",
105
- "eslint-plugin-vue": "^10.3.0",
105
+ "eslint-plugin-vue": "^10.4.0",
106
106
  "eslint-plugin-yml": "^1.18.0",
107
107
  "eslint-processor-vue-blocks": "^2.0.0",
108
108
  "globals": "^16.3.0",