@jsse/eslint-config 0.2.1 → 0.2.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/dist/cli.cjs +1 -1
- package/dist/cli.js +1 -1
- package/dist/index.d.cts +16 -1
- package/dist/index.d.ts +16 -1
- package/package.json +4 -6
package/dist/cli.cjs
CHANGED
package/dist/cli.js
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -5017,7 +5017,7 @@ interface JsdocRuleOptions {
|
|
|
5017
5017
|
"jsdoc/check-tag-names"?: Linter.RuleEntry<JsdocCheckTagNames>;
|
|
5018
5018
|
/**
|
|
5019
5019
|
* Checks that any `@template` names are actually used in the connected `@typedef` or type alias.
|
|
5020
|
-
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/
|
|
5020
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-template-names.md#repos-sticky-header
|
|
5021
5021
|
*/
|
|
5022
5022
|
"jsdoc/check-template-names"?: Linter.RuleEntry<[]>;
|
|
5023
5023
|
/**
|
|
@@ -5055,6 +5055,11 @@ interface JsdocRuleOptions {
|
|
|
5055
5055
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/informative-docs.md#repos-sticky-header
|
|
5056
5056
|
*/
|
|
5057
5057
|
"jsdoc/informative-docs"?: Linter.RuleEntry<JsdocInformativeDocs>;
|
|
5058
|
+
/**
|
|
5059
|
+
* Enforces minimum number of newlines before JSDoc comment blocks
|
|
5060
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/lines-before-block.md#repos-sticky-header
|
|
5061
|
+
*/
|
|
5062
|
+
"jsdoc/lines-before-block"?: Linter.RuleEntry<JsdocLinesBeforeBlock>;
|
|
5058
5063
|
/**
|
|
5059
5064
|
* Enforces a regular expression pattern on descriptions.
|
|
5060
5065
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/match-description.md#repos-sticky-header
|
|
@@ -5429,6 +5434,16 @@ type JsdocInformativeDocs =
|
|
|
5429
5434
|
uselessWords?: string[];
|
|
5430
5435
|
},
|
|
5431
5436
|
];
|
|
5437
|
+
// ----- jsdoc/lines-before-block -----
|
|
5438
|
+
type JsdocLinesBeforeBlock =
|
|
5439
|
+
| []
|
|
5440
|
+
| [
|
|
5441
|
+
{
|
|
5442
|
+
excludedTags?: string[];
|
|
5443
|
+
ignoreSameLine?: boolean;
|
|
5444
|
+
lines?: number;
|
|
5445
|
+
},
|
|
5446
|
+
];
|
|
5432
5447
|
// ----- jsdoc/match-description -----
|
|
5433
5448
|
type JsdocMatchDescription =
|
|
5434
5449
|
| []
|
package/dist/index.d.ts
CHANGED
|
@@ -5017,7 +5017,7 @@ interface JsdocRuleOptions {
|
|
|
5017
5017
|
"jsdoc/check-tag-names"?: Linter.RuleEntry<JsdocCheckTagNames>;
|
|
5018
5018
|
/**
|
|
5019
5019
|
* Checks that any `@template` names are actually used in the connected `@typedef` or type alias.
|
|
5020
|
-
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/
|
|
5020
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-template-names.md#repos-sticky-header
|
|
5021
5021
|
*/
|
|
5022
5022
|
"jsdoc/check-template-names"?: Linter.RuleEntry<[]>;
|
|
5023
5023
|
/**
|
|
@@ -5055,6 +5055,11 @@ interface JsdocRuleOptions {
|
|
|
5055
5055
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/informative-docs.md#repos-sticky-header
|
|
5056
5056
|
*/
|
|
5057
5057
|
"jsdoc/informative-docs"?: Linter.RuleEntry<JsdocInformativeDocs>;
|
|
5058
|
+
/**
|
|
5059
|
+
* Enforces minimum number of newlines before JSDoc comment blocks
|
|
5060
|
+
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/lines-before-block.md#repos-sticky-header
|
|
5061
|
+
*/
|
|
5062
|
+
"jsdoc/lines-before-block"?: Linter.RuleEntry<JsdocLinesBeforeBlock>;
|
|
5058
5063
|
/**
|
|
5059
5064
|
* Enforces a regular expression pattern on descriptions.
|
|
5060
5065
|
* @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/match-description.md#repos-sticky-header
|
|
@@ -5429,6 +5434,16 @@ type JsdocInformativeDocs =
|
|
|
5429
5434
|
uselessWords?: string[];
|
|
5430
5435
|
},
|
|
5431
5436
|
];
|
|
5437
|
+
// ----- jsdoc/lines-before-block -----
|
|
5438
|
+
type JsdocLinesBeforeBlock =
|
|
5439
|
+
| []
|
|
5440
|
+
| [
|
|
5441
|
+
{
|
|
5442
|
+
excludedTags?: string[];
|
|
5443
|
+
ignoreSameLine?: boolean;
|
|
5444
|
+
lines?: number;
|
|
5445
|
+
},
|
|
5446
|
+
];
|
|
5432
5447
|
// ----- jsdoc/match-description -----
|
|
5433
5448
|
type JsdocMatchDescription =
|
|
5434
5449
|
| []
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsse/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.2",
|
|
5
5
|
"description": "@jsse/eslint-config ~ WYSIWYG",
|
|
6
6
|
"author": "jessekrubin <jessekrubin@gmail.com> (https://github.com/jessekrubin/)",
|
|
7
7
|
"license": "MIT",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"eslint-plugin-antfu": "^2.3.4",
|
|
68
68
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
69
69
|
"eslint-plugin-import-x": "^3.1.0",
|
|
70
|
-
"eslint-plugin-jsdoc": "^
|
|
70
|
+
"eslint-plugin-jsdoc": "^50.0.0",
|
|
71
71
|
"eslint-plugin-jsonc": "^2.16.0",
|
|
72
72
|
"eslint-plugin-markdown": "^5.1.0",
|
|
73
73
|
"eslint-plugin-n": "^17.10.2",
|
|
@@ -87,10 +87,6 @@
|
|
|
87
87
|
"typescript-eslint": "^8.0.1",
|
|
88
88
|
"yaml-eslint-parser": "^1.2.3"
|
|
89
89
|
},
|
|
90
|
-
"optionalDependencies": {
|
|
91
|
-
"eslint-plugin-tailwindcss": "^3.17.4",
|
|
92
|
-
"tailwindcss": "^3.4.7"
|
|
93
|
-
},
|
|
94
90
|
"devDependencies": {
|
|
95
91
|
"@antfu/ni": "^0.22.0",
|
|
96
92
|
"@biomejs/biome": "1.8.3",
|
|
@@ -103,6 +99,7 @@
|
|
|
103
99
|
"cac": "^6.7.14",
|
|
104
100
|
"eslint": "^9.8.0",
|
|
105
101
|
"eslint-flat-config-utils": "^0.3.0",
|
|
102
|
+
"eslint-plugin-tailwindcss": "^3.17.4",
|
|
106
103
|
"eslint-typegen": "^0.3.0",
|
|
107
104
|
"execa": "~9.3.0",
|
|
108
105
|
"fast-glob": "^3.3.2",
|
|
@@ -112,6 +109,7 @@
|
|
|
112
109
|
"prettier": "^3.3.3",
|
|
113
110
|
"react": "~18.3.1",
|
|
114
111
|
"rimraf": "^6.0.1",
|
|
112
|
+
"tailwindcss": "^3.4.7",
|
|
115
113
|
"tsup": "^8.2.4",
|
|
116
114
|
"tsx": "^4.16.5",
|
|
117
115
|
"typescript": "~5.5.4",
|