|
| 1 | +import { base } from "../base.js"; |
| 2 | +import { blockCSpell } from "../blocks/blockCSpell.js"; |
| 3 | +import { blockESLintComments } from "../blocks/blockESLintComments.js"; |
| 4 | +import { blockESLintJSDoc } from "../blocks/blockESLintJSDoc.js"; |
| 5 | +import { blockESLintJSONC } from "../blocks/blockESLintJSONC.js"; |
| 6 | +import { blockESLintMarkdown } from "../blocks/blockESLintMarkdown.js"; |
| 7 | +import { blockESLintMoreStyling } from "../blocks/blockESLintMoreStyling.js"; |
| 8 | +import { blockESLintNode } from "../blocks/blockESLintNode.js"; |
| 9 | +import { blockESLintPackageJson } from "../blocks/blockESLintPackageJson.js"; |
| 10 | +import { blockESLintPerfectionist } from "../blocks/blockESLintPerfectionist.js"; |
| 11 | +import { blockESLintRegexp } from "../blocks/blockESLintRegexp.js"; |
| 12 | +import { blockESLintYML } from "../blocks/blockESLintYML.js"; |
| 13 | +import { blockKnip } from "../blocks/blockKnip.js"; |
| 14 | +import { blockMarkdownlint } from "../blocks/blockMarkdownlint.js"; |
| 15 | +import { blockNvmrc } from "../blocks/blockNvmrc.js"; |
| 16 | +import { blockPnpmDedupe } from "../blocks/blockPnpmDedupe.js"; |
| 17 | +import { blockPRCompliance } from "../blocks/blockPRCompliance.js"; |
| 18 | +import { blockPrettierPluginCurly } from "../blocks/blockPrettierPluginCurly.js"; |
| 19 | +import { blockPrettierPluginPackageJson } from "../blocks/blockPrettierPluginPackageJson.js"; |
| 20 | +import { blockPrettierPluginSh } from "../blocks/blockPrettierPluginSh.js"; |
| 21 | +import { blockRenovate } from "../blocks/blockRenovate.js"; |
| 22 | +import { blockSecurityDocs } from "../blocks/blockSecurityDocs.js"; |
| 23 | +import { blockVSCode } from "../blocks/blockVSCode.js"; |
| 24 | +import { presetCommon } from "../presets/presetCommon.js"; |
| 25 | + |
| 26 | +export const presetEverything = base.createPreset({ |
| 27 | + about: { |
| 28 | + description: |
| 29 | + "The most comprehensive tooling imaginable: sorting, spellchecking, and more!", |
| 30 | + name: "Everything", |
| 31 | + }, |
| 32 | + blocks: [ |
| 33 | + ...presetCommon.blocks, |
| 34 | + blockCSpell, |
| 35 | + blockESLintComments, |
| 36 | + blockESLintJSDoc, |
| 37 | + blockESLintJSONC, |
| 38 | + blockESLintMarkdown, |
| 39 | + blockESLintMoreStyling, |
| 40 | + blockESLintNode, |
| 41 | + blockESLintPackageJson, |
| 42 | + blockESLintPerfectionist, |
| 43 | + blockESLintRegexp, |
| 44 | + blockESLintYML, |
| 45 | + blockKnip, |
| 46 | + blockMarkdownlint, |
| 47 | + blockNvmrc, |
| 48 | + blockPnpmDedupe, |
| 49 | + blockPRCompliance, |
| 50 | + blockPrettierPluginCurly, |
| 51 | + blockPrettierPluginPackageJson, |
| 52 | + blockPrettierPluginSh, |
| 53 | + blockRenovate, |
| 54 | + blockSecurityDocs, |
| 55 | + blockVSCode, |
| 56 | + ], |
| 57 | +}); |
0 commit comments