@eienjs/eslint-config 1.5.1 → 1.5.2
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/bin/index.js +1 -1
- package/dist/package.mjs +1 -1
- package/dist/typegen.d.mts +19 -0
- package/package.json +7 -7
package/bin/index.js
CHANGED
package/dist/package.mjs
CHANGED
package/dist/typegen.d.mts
CHANGED
|
@@ -983,6 +983,11 @@ interface RuleOptions {
|
|
|
983
983
|
* @see https://typescript-eslint.io/rules/no-unused-expressions
|
|
984
984
|
*/
|
|
985
985
|
'@typescript-eslint/no-unused-expressions'?: Linter.RuleEntry<TypescriptEslintNoUnusedExpressions>;
|
|
986
|
+
/**
|
|
987
|
+
* Disallow unused private class members
|
|
988
|
+
* @see https://typescript-eslint.io/rules/no-unused-private-class-members
|
|
989
|
+
*/
|
|
990
|
+
'@typescript-eslint/no-unused-private-class-members'?: Linter.RuleEntry<[]>;
|
|
986
991
|
/**
|
|
987
992
|
* Disallow unused variables
|
|
988
993
|
* @see https://typescript-eslint.io/rules/no-unused-vars
|
|
@@ -2134,6 +2139,11 @@ interface RuleOptions {
|
|
|
2134
2139
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-property-type.md#repos-sticky-header
|
|
2135
2140
|
*/
|
|
2136
2141
|
'jsdoc/require-property-type'?: Linter.RuleEntry<[]>;
|
|
2142
|
+
/**
|
|
2143
|
+
* Requires that Promise rejections are documented with `@rejects` tags.
|
|
2144
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-rejects.md#repos-sticky-header
|
|
2145
|
+
*/
|
|
2146
|
+
'jsdoc/require-rejects'?: Linter.RuleEntry<JsdocRequireRejects>;
|
|
2137
2147
|
/**
|
|
2138
2148
|
* Requires that returns are documented with `@returns`.
|
|
2139
2149
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns.md#repos-sticky-header
|
|
@@ -9807,6 +9817,7 @@ type JsdocCheckExamples = [] | [{
|
|
|
9807
9817
|
}];
|
|
9808
9818
|
// ----- jsdoc/check-indentation -----
|
|
9809
9819
|
type JsdocCheckIndentation = [] | [{
|
|
9820
|
+
allowIndentedSections?: boolean;
|
|
9810
9821
|
excludeTags?: string[];
|
|
9811
9822
|
}];
|
|
9812
9823
|
// ----- jsdoc/check-line-alignment -----
|
|
@@ -10153,6 +10164,14 @@ type JsdocRequireParamType = [] | [{
|
|
|
10153
10164
|
defaultDestructuredRootType?: string;
|
|
10154
10165
|
setDefaultDestructuredRootType?: boolean;
|
|
10155
10166
|
}];
|
|
10167
|
+
// ----- jsdoc/require-rejects -----
|
|
10168
|
+
type JsdocRequireRejects = [] | [{
|
|
10169
|
+
contexts?: (string | {
|
|
10170
|
+
comment?: string;
|
|
10171
|
+
context?: string;
|
|
10172
|
+
})[];
|
|
10173
|
+
exemptedBy?: string[];
|
|
10174
|
+
}];
|
|
10156
10175
|
// ----- jsdoc/require-returns -----
|
|
10157
10176
|
type JsdocRequireReturns = [] | [{
|
|
10158
10177
|
checkConstructors?: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eienjs/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.2",
|
|
5
5
|
"description": "EienJS ESLint Config",
|
|
6
6
|
"author": "Fernando Isidro <luffynando@gmail.com> (https://github.com/luffynando/)",
|
|
7
7
|
"license": "MIT",
|
|
@@ -77,9 +77,9 @@
|
|
|
77
77
|
"@clack/prompts": "^0.11.0",
|
|
78
78
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
|
|
79
79
|
"@eslint/markdown": "^7.5.1",
|
|
80
|
-
"@stylistic/eslint-plugin": "^5.
|
|
81
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
82
|
-
"@typescript-eslint/parser": "^8.
|
|
80
|
+
"@stylistic/eslint-plugin": "^5.6.1",
|
|
81
|
+
"@typescript-eslint/eslint-plugin": "^8.47.0",
|
|
82
|
+
"@typescript-eslint/parser": "^8.47.0",
|
|
83
83
|
"@vitest/eslint-plugin": "^1.4.3",
|
|
84
84
|
"ansis": "^4.2.0",
|
|
85
85
|
"cac": "^6.7.14",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"eslint-plugin-antfu": "^3.1.1",
|
|
90
90
|
"eslint-plugin-command": "^3.3.1",
|
|
91
91
|
"eslint-plugin-import-lite": "^0.3.0",
|
|
92
|
-
"eslint-plugin-jsdoc": "^61.
|
|
92
|
+
"eslint-plugin-jsdoc": "^61.4.0",
|
|
93
93
|
"eslint-plugin-jsonc": "^2.21.0",
|
|
94
94
|
"eslint-plugin-n": "^17.23.1",
|
|
95
95
|
"eslint-plugin-no-only-tests": "^3.3.0",
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
"@adonisjs/eslint-plugin": "^2.0.1",
|
|
116
116
|
"@commitlint/cli": "^20.1.0",
|
|
117
117
|
"@commitlint/config-conventional": "^20.0.0",
|
|
118
|
-
"@eslint/config-inspector": "^1.
|
|
118
|
+
"@eslint/config-inspector": "^1.4.1",
|
|
119
119
|
"@nuxt/eslint-plugin": "^1.10.0",
|
|
120
120
|
"@prettier/plugin-xml": "^3.4.2",
|
|
121
121
|
"@types/node": "^24.10.1",
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
"husky": "^9.1.7",
|
|
130
130
|
"np": "^10.2.0",
|
|
131
131
|
"prettier-plugin-astro": "^0.14.1",
|
|
132
|
-
"tsdown": "^0.16.
|
|
132
|
+
"tsdown": "^0.16.6",
|
|
133
133
|
"tsx": "^4.20.6",
|
|
134
134
|
"typescript": "^5.9.3"
|
|
135
135
|
},
|