pasika 0.9.0 → 0.10.0
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/README.md +6 -6
- package/dist/eslint/pasika/index.d.ts +8 -2
- package/dist/eslint/pasika/index.js +1168 -392
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -200,12 +200,12 @@ Applied to `src/**/globals.css` (and other stylesheets) through `@eslint/css` wi
|
|
|
200
200
|
|
|
201
201
|
Applied to `package.json` through `@eslint/json`. The framework-agnostic `exact-version` rule applies to any repository, including pasika itself; `nextjs-stack` applies to a Next.js/React application, and the Vulyk rules apply to a repository adopting the framework.
|
|
202
202
|
|
|
203
|
-
| Rule | Enforces
|
|
204
|
-
| ------------------------- |
|
|
205
|
-
| `pasika/exact-version` | Dependency and devDependency versions are pinned exactly, never ranges
|
|
206
|
-
| `pasika/nextjs-stack` | All Tech Stack Reference packages are listed in `package.json` (Next.js/React apps)
|
|
207
|
-
| `pasika/vulyk-dependency` | `vulyk` is listed in `devDependencies`, not `dependencies`
|
|
208
|
-
| `pasika/
|
|
203
|
+
| Rule | Enforces |
|
|
204
|
+
| ------------------------- | ------------------------------------------------------------------------------------------------- |
|
|
205
|
+
| `pasika/exact-version` | Dependency and devDependency versions are pinned exactly, never ranges |
|
|
206
|
+
| `pasika/nextjs-stack` | All Tech Stack Reference packages are listed in `package.json` (Next.js/React apps) |
|
|
207
|
+
| `pasika/vulyk-dependency` | `vulyk` is listed in `devDependencies`, not `dependencies` |
|
|
208
|
+
| `pasika/tracked-docs` | `vulyk.config.ts` tracks the framework's required tracked docs from pasika and `AGENTS.md` exists |
|
|
209
209
|
|
|
210
210
|
### Documentation rules
|
|
211
211
|
|
|
@@ -88,6 +88,7 @@ declare const documentationRules: {
|
|
|
88
88
|
"no-cross-document-link": _eslint_markdown.MarkdownRuleDefinition;
|
|
89
89
|
"reference-no-rfc-vocabulary": _eslint_markdown.MarkdownRuleDefinition;
|
|
90
90
|
"reference-block-headings": _eslint_markdown.MarkdownRuleDefinition;
|
|
91
|
+
"reference-max-heading-depth": _eslint_markdown.MarkdownRuleDefinition;
|
|
91
92
|
"support-document-placement": _eslint_markdown.MarkdownRuleDefinition;
|
|
92
93
|
"no-template-prompt": _eslint_markdown.MarkdownRuleDefinition;
|
|
93
94
|
"guide-folder-entry-point": _eslint_markdown.MarkdownRuleDefinition;
|
|
@@ -133,7 +134,7 @@ declare const huskyRules: {
|
|
|
133
134
|
|
|
134
135
|
declare const vulykRules: {
|
|
135
136
|
"vulyk-dependency": _eslint_json.JSONRuleDefinition;
|
|
136
|
-
"
|
|
137
|
+
"tracked-docs": _eslint_json.JSONRuleDefinition;
|
|
137
138
|
};
|
|
138
139
|
|
|
139
140
|
/**
|
|
@@ -146,7 +147,7 @@ declare const vulykRules: {
|
|
|
146
147
|
declare const pasikaPlugin: {
|
|
147
148
|
rules: {
|
|
148
149
|
"vulyk-dependency": _eslint_json.JSONRuleDefinition;
|
|
149
|
-
"
|
|
150
|
+
"tracked-docs": _eslint_json.JSONRuleDefinition;
|
|
150
151
|
"husky-hook": _eslint_json.JSONRuleDefinition;
|
|
151
152
|
"nextjs-stack": _eslint_json.JSONRuleDefinition;
|
|
152
153
|
"exact-version": _eslint_json.JSONRuleDefinition;
|
|
@@ -177,6 +178,7 @@ declare const pasikaPlugin: {
|
|
|
177
178
|
"no-cross-document-link": _eslint_markdown.MarkdownRuleDefinition;
|
|
178
179
|
"reference-no-rfc-vocabulary": _eslint_markdown.MarkdownRuleDefinition;
|
|
179
180
|
"reference-block-headings": _eslint_markdown.MarkdownRuleDefinition;
|
|
181
|
+
"reference-max-heading-depth": _eslint_markdown.MarkdownRuleDefinition;
|
|
180
182
|
"support-document-placement": _eslint_markdown.MarkdownRuleDefinition;
|
|
181
183
|
"no-template-prompt": _eslint_markdown.MarkdownRuleDefinition;
|
|
182
184
|
"guide-folder-entry-point": _eslint_markdown.MarkdownRuleDefinition;
|
|
@@ -234,6 +236,10 @@ declare const pasikaPlugin: {
|
|
|
234
236
|
"cva-boolean-variants": eslint.Rule.RuleModule;
|
|
235
237
|
"cross-feature-import": eslint.Rule.RuleModule;
|
|
236
238
|
"pure-function-extract": eslint.Rule.RuleModule;
|
|
239
|
+
"root-support-placement": eslint.Rule.RuleModule;
|
|
240
|
+
"route-handler-shape": eslint.Rule.RuleModule;
|
|
241
|
+
"http-error-usage": eslint.Rule.RuleModule;
|
|
242
|
+
"with-response-helper": eslint.Rule.RuleModule;
|
|
237
243
|
"hook-complexity": eslint.Rule.RuleModule;
|
|
238
244
|
"locale-dotted-path": eslint.Rule.RuleModule;
|
|
239
245
|
"locales-location": eslint.Rule.RuleModule;
|