@ntnyq/eslint-config 7.0.0-beta.12 → 7.0.0-beta.13

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.d.mts +28 -0
  2. package/package.json +17 -17
package/dist/index.d.mts CHANGED
@@ -1572,6 +1572,7 @@ interface RuleOptions {
1572
1572
  /**
1573
1573
  * Disallow specified modules when loaded by `import`
1574
1574
  * @see https://typescript-eslint.io/rules/no-restricted-imports
1575
+ * @deprecated
1575
1576
  */
1576
1577
  '@typescript-eslint/no-restricted-imports'?: Linter.RuleEntry<TypescriptEslintNoRestrictedImports>;
1577
1578
  /**
@@ -2600,6 +2601,11 @@ interface RuleOptions {
2600
2601
  * @see https://github.com/eslint-community/eslint-plugin-eslint-plugin/tree/HEAD/docs/rules/require-meta-has-suggestions.md
2601
2602
  */
2602
2603
  'eslint-plugin/require-meta-has-suggestions'?: Linter.RuleEntry<[]>;
2604
+ /**
2605
+ * require rules to implement a `meta.languages` property
2606
+ * @see https://github.com/eslint-community/eslint-plugin-eslint-plugin/tree/HEAD/docs/rules/require-meta-languages.md
2607
+ */
2608
+ 'eslint-plugin/require-meta-languages'?: Linter.RuleEntry<[]>;
2603
2609
  /**
2604
2610
  * require rules to implement a `meta.schema` property
2605
2611
  * @see https://github.com/eslint-community/eslint-plugin-eslint-plugin/tree/HEAD/docs/rules/require-meta-schema.md
@@ -3236,6 +3242,11 @@ interface RuleOptions {
3236
3242
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-undefined-types.md#repos-sticky-header
3237
3243
  */
3238
3244
  'jsdoc/no-undefined-types'?: Linter.RuleEntry<JsdocNoUndefinedTypes>;
3245
+ /**
3246
+ * Normalizes labeled links in `@see` tags to a canonical `{@link}` form.
3247
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/normalize-see-links.md#repos-sticky-header
3248
+ */
3249
+ 'jsdoc/normalize-see-links'?: Linter.RuleEntry<JsdocNormalizeSeeLinks>;
3239
3250
  /**
3240
3251
  * Prefer `@import` tags to inline `import()` statements.
3241
3252
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/prefer-import-tag.md#repos-sticky-header
@@ -5936,6 +5947,16 @@ interface RuleOptions {
5936
5947
  * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-at-html-tags/
5937
5948
  */
5938
5949
  'svelte/no-at-html-tags'?: Linter.RuleEntry<[]>;
5950
+ /**
5951
+ * disallow useless `bind:value` on `<input type="checkbox">` and `<input type="radio">`
5952
+ * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-bind-value-on-checkable-inputs/
5953
+ */
5954
+ 'svelte/no-bind-value-on-checkable-inputs'?: Linter.RuleEntry<[]>;
5955
+ /**
5956
+ * disallow a `.svelte` component and a same-named runes module (e.g. `Foo.svelte` and `Foo.svelte.ts`) from coexisting
5957
+ * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-conflicting-module-names/
5958
+ */
5959
+ 'svelte/no-conflicting-module-names'?: Linter.RuleEntry<[]>;
5939
5960
  /**
5940
5961
  * disallow DOM manipulating
5941
5962
  * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-dom-manipulating/
@@ -12030,6 +12051,12 @@ type JsdocNoUndefinedTypes = [] | [{
12030
12051
  disableReporting?: boolean;
12031
12052
  markVariablesAsUsed?: boolean;
12032
12053
  }];
12054
+ // ----- jsdoc/normalize-see-links -----
12055
+ type JsdocNormalizeSeeLinks = [] | [{
12056
+ canonicalForm?: ("pipe" | "prefix");
12057
+ enableFixer?: boolean;
12058
+ wrapBareUrls?: boolean;
12059
+ }];
12033
12060
  // ----- jsdoc/prefer-import-tag -----
12034
12061
  type JsdocPreferImportTag = [] | [{
12035
12062
  enableFixer?: boolean;
@@ -19738,6 +19765,7 @@ type VueSortKeys = [] | [("asc" | "desc")] | [("asc" | "desc"), {
19738
19765
  ignoreGrandchildrenOf?: unknown[];
19739
19766
  minKeys?: number;
19740
19767
  natural?: boolean;
19768
+ allowLineSeparatedGroups?: boolean;
19741
19769
  }];
19742
19770
  // ----- vue/space-in-parens -----
19743
19771
  type VueSpaceInParens = [] | [("always" | "never")] | [("always" | "never"), {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ntnyq/eslint-config",
3
3
  "type": "module",
4
- "version": "7.0.0-beta.12",
4
+ "version": "7.0.0-beta.13",
5
5
  "description": "An opinionated ESLint config preset of ntnyq",
6
6
  "keywords": [
7
7
  "eslint",
@@ -43,12 +43,12 @@
43
43
  "@html-eslint/parser": "^0.64.0",
44
44
  "astro-eslint-parser": "^3.0.0",
45
45
  "eslint": "^10.4.0",
46
- "eslint-plugin-astro": "^3.0.0",
47
- "eslint-plugin-eslint-plugin": "^7.4.2",
46
+ "eslint-plugin-astro": "^3.0.1",
47
+ "eslint-plugin-eslint-plugin": "^7.5.0",
48
48
  "eslint-plugin-pnpm": "^1.6.1",
49
- "eslint-plugin-svelte": "^3.20.0",
49
+ "eslint-plugin-svelte": "^3.22.0",
50
50
  "eslint-plugin-unused-imports": "^4.4.1",
51
- "svelte": "^5.56.4",
51
+ "svelte": "^5.56.7",
52
52
  "svelte-eslint-parser": "^1.8.0"
53
53
  },
54
54
  "peerDependenciesMeta": {
@@ -84,12 +84,12 @@
84
84
  }
85
85
  },
86
86
  "dependencies": {
87
- "@antfu/install-pkg": "^1.1.0",
87
+ "@antfu/install-pkg": "^2.0.1",
88
88
  "@clack/prompts": "^1.7.0",
89
89
  "@eslint-community/eslint-plugin-eslint-comments": "^4.7.2",
90
90
  "@eslint/js": "^10.0.1",
91
91
  "@eslint/markdown": "^8.0.3",
92
- "@ntnyq/utils": "^0.17.0",
92
+ "@ntnyq/utils": "^0.18.1",
93
93
  "@unocss/eslint-plugin": "^66.7.5",
94
94
  "@vitest/eslint-plugin": "^1.6.23",
95
95
  "eslint-config-flat-gitignore": "^2.3.0",
@@ -103,12 +103,12 @@
103
103
  "eslint-plugin-depend": "^1.5.0",
104
104
  "eslint-plugin-github-action": "^0.3.0",
105
105
  "eslint-plugin-import-x": "^4.17.1",
106
- "eslint-plugin-jsdoc": "^63.0.13",
106
+ "eslint-plugin-jsdoc": "^63.2.0",
107
107
  "eslint-plugin-jsonc": "^3.3.0",
108
108
  "eslint-plugin-n": "^18.2.2",
109
109
  "eslint-plugin-no-only-tests": "^3.4.0",
110
110
  "eslint-plugin-ntnyq": "^0.14.0",
111
- "eslint-plugin-oxfmt": "^0.13.0",
111
+ "eslint-plugin-oxfmt": "^0.14.0",
112
112
  "eslint-plugin-perfectionist": "^5.10.0",
113
113
  "eslint-plugin-pinia": "^0.4.2",
114
114
  "eslint-plugin-prettier": "^5.5.6",
@@ -116,23 +116,23 @@
116
116
  "eslint-plugin-svgo": "^0.12.0",
117
117
  "eslint-plugin-toml": "^1.4.0",
118
118
  "eslint-plugin-unicorn": "^72.0.0",
119
- "eslint-plugin-vue": "^10.9.2",
119
+ "eslint-plugin-vue": "^10.10.0",
120
120
  "eslint-plugin-yml": "^3.6.0",
121
121
  "eslint-processor-vue-blocks": "^2.0.0",
122
122
  "globals": "^17.7.0",
123
123
  "jsonc-eslint-parser": "^3.1.0",
124
124
  "local-pkg": "^1.2.1",
125
125
  "toml-eslint-parser": "^1.0.3",
126
- "typescript-eslint": "^8.64.0",
126
+ "typescript-eslint": "^8.65.0",
127
127
  "vue-eslint-parser": "^10.4.1",
128
128
  "yaml-eslint-parser": "^2.1.0"
129
129
  },
130
130
  "devDependencies": {
131
131
  "@types/node": "^26.1.1",
132
- "@typescript-eslint/types": "^8.64.0",
133
- "@typescript-eslint/utils": "^8.64.0",
132
+ "@typescript-eslint/types": "^8.65.0",
133
+ "@typescript-eslint/utils": "^8.65.0",
134
134
  "@typescript/native-preview": "^7.0.0-dev.20260707.2",
135
- "bumpp": "^11.1.0",
135
+ "bumpp": "^12.0.0",
136
136
  "consola": "^3.4.2",
137
137
  "eslint": "^10.7.0",
138
138
  "eslint-typegen": "^2.3.1",
@@ -140,10 +140,10 @@
140
140
  "jiti": "^2.7.0",
141
141
  "nano-staged": "^1.0.2",
142
142
  "npm-run-all2": "^9.0.2",
143
- "oxfmt": "^0.59.0",
144
- "prettier": "^3.9.5",
143
+ "oxfmt": "^0.60.0",
144
+ "prettier": "^3.9.6",
145
145
  "tinyglobby": "^0.2.17",
146
- "tsdown": "^0.22.8",
146
+ "tsdown": "^0.22.13",
147
147
  "tsx": "^4.23.1",
148
148
  "typescript": "^6.0.3",
149
149
  "uncase": "^0.2.0",