├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report-issue-forms-beta.yml │ ├── bug-report.md │ └── feature-request.md ├── renovate.json5 └── workflows │ ├── ci.yml │ ├── coverage-report.yml │ ├── coverage.yml │ ├── docs.yml │ └── publish.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.d.ts ├── .prettierrc.js ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── .vitepress │ ├── config.ts │ ├── public │ │ └── icon.png │ └── theme │ │ ├── index.ts │ │ └── styles │ │ └── vars.css ├── guide │ ├── index.md │ ├── pug-specific-options.md │ └── standard-prettier-overrides.md └── index.md ├── eslint.config.ts ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── src ├── doctype-shortcut-registry.ts ├── index.ts ├── logger.ts ├── options │ ├── attribute-sorting │ │ ├── index.ts │ │ └── utils.ts │ ├── common.ts │ ├── constants.ts │ ├── converge.ts │ ├── empty-attributes │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── index.ts │ ├── pug-attribute-separator.ts │ ├── pug-class-location.ts │ ├── pug-class-notation.ts │ ├── pug-closing-bracket-indent-depth.ts │ ├── pug-comment-preserve-spaces.ts │ ├── pug-explicit-div.ts │ ├── pug-framework.ts │ ├── pug-id-notation.ts │ ├── pug-preserve-attribute-brackets.ts │ ├── pug-preserve-whitespace.ts │ ├── pug-single-file-component-indentation.ts │ ├── pug-wrap-attributes.ts │ └── types.ts ├── prettier.d.ts ├── printer.ts └── utils │ ├── angular.ts │ ├── common.ts │ ├── script-mime-types.ts │ ├── svelte.ts │ └── vue.ts ├── tests ├── attributes │ ├── boolean-attributes │ │ ├── boolean-attributes.test.ts │ │ ├── formatted.pug │ │ └── unformatted.pug │ ├── class-attributes │ │ ├── class-attributes.test.ts │ │ ├── formatted.pug │ │ └── unformatted.pug │ ├── no-attributes │ │ ├── formatted.pug │ │ ├── no-attributes.test.ts │ │ └── unformatted.pug │ └── style-attributes │ │ ├── formatted.pug │ │ ├── style-attributes.test.ts │ │ └── unformatted.pug ├── comments │ ├── comments.test.ts │ ├── formatted.pug │ └── unformatted.pug ├── common.ts ├── conditionals │ ├── conditionals.test.ts │ ├── formatted.pug │ └── unformatted.pug ├── embed │ ├── md │ │ ├── embed.test.ts │ │ ├── formatted.md │ │ └── unformatted.md │ └── vue │ │ ├── embed.test.ts │ │ ├── formatted-empty-template.vue │ │ ├── formatted-html-reference.vue │ │ ├── formatted.vue │ │ ├── unformatted-empty-template.vue │ │ ├── unformatted-html-reference.vue │ │ └── unformatted.vue ├── frameworks │ ├── detection.test.ts │ ├── svelte │ │ ├── formatted.pug │ │ ├── svelte.test.ts │ │ └── unformatted.pug │ └── vue │ │ ├── v-bind │ │ ├── formatted.pug │ │ ├── unformatted.pug │ │ └── v-bind.test.ts │ │ ├── v-model │ │ ├── formatted.pug │ │ ├── unformatted.pug │ │ └── v-model.test.ts │ │ ├── v-on │ │ ├── formatted.pug │ │ ├── unformatted.pug │ │ └── v-on.test.ts │ │ └── v-slot │ │ ├── formatted.pug │ │ ├── unformatted.pug │ │ └── v-slot.test.ts ├── indents │ ├── formatted-2-spaces.pug │ ├── formatted-3-spaces.pug │ ├── formatted-4-spaces.pug │ ├── formatted-tabs.pug │ ├── indents.test.ts │ └── unformatted.pug ├── inheritance │ └── blocks │ │ ├── formatted.pug │ │ ├── inheritance.test.ts │ │ └── unformatted.pug ├── interpolations │ ├── formatted_angular.pug │ ├── formatted_none.pug │ ├── formatted_vue.pug │ ├── interpolations.test.ts │ ├── unformatted_angular.pug │ ├── unformatted_none.pug │ └── unformatted_vue.pug ├── issues │ ├── issue-105 │ │ ├── formatted.vue │ │ ├── issue-105.test.ts │ │ └── unformatted.vue │ ├── issue-107 │ │ ├── formatted.pug │ │ ├── issue-107.test.ts │ │ └── unformatted.pug │ ├── issue-11 │ │ ├── formatted.pug │ │ ├── issue-11.test.ts │ │ └── unformatted.pug │ ├── issue-110 │ │ ├── formatted.pug │ │ ├── issue-110.test.ts │ │ └── unformatted.pug │ ├── issue-115 │ │ ├── formatted.pug │ │ ├── issue-115.test.ts │ │ └── unformatted.pug │ ├── issue-129 │ │ ├── formatted.pug │ │ ├── issue-129.test.ts │ │ └── unformatted.pug │ ├── issue-145 │ │ ├── extends-formatted.vue │ │ ├── extends-unformatted.vue │ │ ├── formatted.pug │ │ ├── formatted.vue │ │ ├── issue-145.test.ts │ │ ├── unformatted.pug │ │ └── unformatted.vue │ ├── issue-147 │ │ ├── formatted.pug │ │ ├── issue-147.test.ts │ │ └── unformatted.pug │ ├── issue-148 │ │ ├── formatted.vue │ │ ├── issue-148.test.ts │ │ └── unformatted.vue │ ├── issue-149 │ │ ├── formatted.pug │ │ ├── issue-149.test.ts │ │ └── unformatted.pug │ ├── issue-156 │ │ ├── formatted.pug │ │ ├── issue-156.test.ts │ │ └── unformatted.pug │ ├── issue-158 │ │ ├── formatted.pug │ │ ├── issue-158.test.ts │ │ └── unformatted.pug │ ├── issue-162 │ │ ├── formatted.pug │ │ ├── issue-162.test.ts │ │ └── unformatted.pug │ ├── issue-169 │ │ ├── formatted.pug │ │ ├── issue-169.test.ts │ │ └── unformatted.pug │ ├── issue-171 │ │ ├── formatted.pug │ │ ├── issue-171.test.ts │ │ └── unformatted.pug │ ├── issue-176 │ │ ├── formatted.pug │ │ ├── issue-176.test.ts │ │ └── unformatted.pug │ ├── issue-18 │ │ ├── formatted.pug │ │ ├── issue-18.test.ts │ │ └── unformatted.pug │ ├── issue-180 │ │ ├── formatted.pug │ │ ├── issue-180.test.ts │ │ └── unformatted.pug │ ├── issue-182 │ │ ├── formatted.pug │ │ ├── issue-182.test.ts │ │ └── unformatted.pug │ ├── issue-192 │ │ ├── formatted.pug │ │ ├── issue-192.test.ts │ │ └── unformatted.pug │ ├── issue-20 │ │ ├── formatted.pug │ │ ├── issue-20.test.ts │ │ └── unformatted.pug │ ├── issue-206 │ │ ├── formatted.pug │ │ ├── issue-206.test.ts │ │ └── unformatted.pug │ ├── issue-238 │ │ ├── formatted.pug │ │ ├── issue-238.test.ts │ │ └── unformatted.pug │ ├── issue-24 │ │ ├── formatted.pug │ │ ├── issue-24.test.ts │ │ └── unformatted.pug │ ├── issue-244 │ │ ├── formatted.pug │ │ ├── issue-244.test.ts │ │ └── unformatted.pug │ ├── issue-250 │ │ ├── formatted.pug │ │ ├── issue-250.test.ts │ │ └── unformatted.pug │ ├── issue-255 │ │ ├── formatted.pug │ │ ├── issue-255.test.ts │ │ └── unformatted.pug │ ├── issue-261 │ │ ├── formatted.pug │ │ ├── issue-261.test.ts │ │ └── unformatted.pug │ ├── issue-262 │ │ ├── formatted.pug │ │ ├── issue-262.test.ts │ │ └── unformatted.pug │ ├── issue-268 │ │ ├── formatted.pug │ │ ├── issue-268.test.ts │ │ └── unformatted.pug │ ├── issue-27 │ │ ├── formatted.pug │ │ ├── issue-27.test.ts │ │ └── unformatted.pug │ ├── issue-278 │ │ ├── formatted.pug │ │ ├── issue-278.test.ts │ │ └── unformatted.pug │ ├── issue-282 │ │ ├── class-indented.vue │ │ ├── class-not-indented.vue │ │ ├── id-indented.vue │ │ ├── id-not-indented.vue │ │ └── issue-282.test.ts │ ├── issue-289 │ │ ├── formatted.pug │ │ ├── formatted.vue │ │ ├── issue-289.test.ts │ │ ├── unformatted.pug │ │ └── unformatted.vue │ ├── issue-29 │ │ ├── formatted.pug │ │ ├── issue-29.test.ts │ │ └── unformatted.pug │ ├── issue-292 │ │ ├── formatted.pug │ │ ├── issue-292.test.ts │ │ └── unformatted.pug │ ├── issue-303 │ │ ├── formatted.pug │ │ ├── issue-303.test.ts │ │ └── unformatted.pug │ ├── issue-307 │ │ ├── formatted.pug │ │ ├── issue-307.test.ts │ │ └── unformatted.pug │ ├── issue-31 │ │ ├── formatted.pug │ │ ├── issue-31.test.ts │ │ └── unformatted.pug │ ├── issue-310 │ │ ├── formatted.pug │ │ ├── issue-310.test.ts │ │ └── unformatted.pug │ ├── issue-315 │ │ ├── formatted.pug │ │ ├── issue-315.test.ts │ │ └── unformatted.pug │ ├── issue-317 │ │ ├── formatted.pug │ │ ├── issue-317.test.ts │ │ └── unformatted.pug │ ├── issue-329 │ │ ├── formatted.pug │ │ ├── issue-329.test.ts │ │ └── unformatted.pug │ ├── issue-339 │ │ ├── double-quotes.pug │ │ ├── issue-339.test.ts │ │ └── single-quotes.pug │ ├── issue-34 │ │ ├── formatted.pug │ │ ├── issue-34.test.ts │ │ └── unformatted.pug │ ├── issue-362 │ │ ├── formatted.pug │ │ ├── formatted.vue │ │ ├── issue-362.test.ts │ │ ├── unformatted.pug │ │ └── unformatted.vue │ ├── issue-365 │ │ ├── formatted.vue │ │ ├── issue-365.test.ts │ │ └── unformatted.vue │ ├── issue-38 │ │ ├── formatted.pug │ │ ├── issue-38.test.ts │ │ └── unformatted.pug │ ├── issue-39 │ │ ├── formatted.pug │ │ ├── issue-39.test.ts │ │ └── unformatted.pug │ ├── issue-40 │ │ ├── formatted.pug │ │ ├── issue-40.test.ts │ │ └── unformatted.pug │ ├── issue-402 │ │ ├── formatted.pug │ │ ├── issue-402.test.ts │ │ └── unformatted.pug │ ├── issue-405 │ │ ├── formatted.vue │ │ ├── issue-405.test.ts │ │ └── unformatted.vue │ ├── issue-417 │ │ ├── formatted.pug │ │ ├── issue-417.test.ts │ │ └── unformatted.pug │ ├── issue-425 │ │ ├── formatted.pug │ │ ├── issue-425.test.ts │ │ └── unformatted.pug │ ├── issue-428 │ │ ├── formatted.pug │ │ ├── issue-428.test.ts │ │ └── unformatted.pug │ ├── issue-439 │ │ ├── formatted.pug │ │ ├── issue-439.test.ts │ │ └── unformatted.pug │ ├── issue-447 │ │ ├── formatted.pug │ │ ├── issue-447.test.ts │ │ └── unformatted.pug │ ├── issue-486 │ │ ├── formatted.pug │ │ ├── issue-486.test.ts │ │ └── unformatted.pug │ ├── issue-49 │ │ ├── formatted.pug │ │ ├── issue-49.test.ts │ │ └── unformatted.pug │ ├── issue-51 │ │ ├── formatted.pug │ │ ├── issue-51.test.ts │ │ └── unformatted.pug │ ├── issue-52 │ │ ├── formatted.pug │ │ ├── issue-52.test.ts │ │ └── unformatted.pug │ ├── issue-58 │ │ ├── formatted.pug │ │ ├── issue-58.test.ts │ │ └── unformatted.pug │ ├── issue-59 │ │ ├── formatted.pug │ │ ├── issue-59.test.ts │ │ └── unformatted.pug │ ├── issue-61 │ │ ├── formatted.pug │ │ ├── issue-61.test.ts │ │ └── unformatted.pug │ ├── issue-63 │ │ ├── formatted.pug │ │ ├── issue-63.test.ts │ │ └── unformatted.pug │ ├── issue-65 │ │ ├── formatted.pug │ │ ├── issue-65.test.ts │ │ └── unformatted.pug │ ├── issue-67 │ │ ├── formatted.pug │ │ ├── issue-67.test.ts │ │ └── unformatted.pug │ ├── issue-70 │ │ ├── formatted.pug │ │ ├── issue-70.test.ts │ │ └── unformatted.pug │ ├── issue-80 │ │ ├── formatted.pug │ │ ├── issue-80.test.ts │ │ └── unformatted.pug │ ├── issue-85 │ │ ├── formatted.pug │ │ ├── issue-85.test.ts │ │ └── unformatted.pug │ ├── issue-89 │ │ ├── formatted.pug │ │ ├── issue-89.test.ts │ │ └── unformatted.pug │ ├── issue-9 │ │ ├── formatted.pug │ │ ├── issue-9.test.ts │ │ └── unformatted.pug │ └── issue-95 │ │ ├── formatted.pug │ │ ├── issue-95.test.ts │ │ └── unformatted.pug ├── literals │ ├── class-literals │ │ ├── class-literals.test.ts │ │ ├── formatted.pug │ │ └── unformatted.pug │ ├── id-class-literals │ │ ├── formatted.pug │ │ ├── id-class-literals.test.ts │ │ └── unformatted.pug │ ├── id-literals │ │ ├── formatted.pug │ │ ├── id-literals.test.ts │ │ └── unformatted.pug │ └── matching-content │ │ ├── formatted.pug │ │ ├── matching-content.test.ts │ │ └── unformatted.pug ├── mixins │ ├── formatted.pug │ ├── mixins.test.ts │ └── unformatted.pug ├── options │ ├── bracketSameLine │ │ ├── bracket-same-line.test.ts │ │ ├── new-line.pug │ │ ├── same-line.pug │ │ └── unformatted.pug │ ├── bracketSpacing │ │ ├── bracket-spacing.test.ts │ │ ├── formatted.pug │ │ └── unformatted.pug │ ├── emptyAttributes │ │ ├── empty-attributes.test.ts │ │ ├── formatted.pug │ │ └── unformatted.pug │ ├── printWidth │ │ ├── formatted.pug │ │ ├── print-width.test.ts │ │ └── unformatted.pug │ ├── pugAttributeSeparator │ │ ├── always │ │ │ ├── always.test.ts │ │ │ ├── formatted.pug │ │ │ └── unformatted.pug │ │ ├── as-needed │ │ │ ├── as-needed.test.ts │ │ │ ├── formatted.pug │ │ │ └── unformatted.pug │ │ └── none │ │ │ ├── angular-formatted.pug │ │ │ ├── angular-unformatted.pug │ │ │ ├── formatted.pug │ │ │ ├── none.test.ts │ │ │ └── unformatted.pug │ ├── pugClassLocation │ │ ├── formatted-after.pug │ │ ├── formatted-before.pug │ │ ├── pug-class-location.test.ts │ │ └── unformatted.pug │ ├── pugClassNotation │ │ ├── formatted-as-is.pug │ │ ├── formatted-attribute.pug │ │ ├── formatted-literal.pug │ │ ├── pug-class-notation.test.ts │ │ └── unformatted.pug │ ├── pugClosingBracketIndentDepth │ │ ├── depth-0.pug │ │ ├── depth-1.pug │ │ ├── pug-closing-bracket-indent-depth.test.ts │ │ └── unformatted.pug │ ├── pugCommentPreserveSpaces │ │ ├── keep-all │ │ │ ├── formatted.pug │ │ │ ├── keep-all.test.ts │ │ │ └── unformatted.pug │ │ ├── keep-leading │ │ │ ├── formatted.pug │ │ │ ├── keep-leading.test.ts │ │ │ └── unformatted.pug │ │ └── trim-all │ │ │ ├── formatted.pug │ │ │ ├── trim-all.test.ts │ │ │ └── unformatted.pug │ ├── pugExplicitDiv │ │ ├── formatted-explicit-div.pug │ │ ├── formatted-implicit-div.pug │ │ ├── pug-explicit-div.test.ts │ │ └── unformatted.pug │ ├── pugIdNotation │ │ ├── formatted-attribute.pug │ │ ├── formatted-literal.pug │ │ └── pug-id-notation.test.ts │ ├── pugPreserveAttributeBrackets │ │ ├── formatted-false.pug │ │ ├── formatted-true.pug │ │ ├── pug-preserve-attribute-brackets.test.ts │ │ └── unformatted.pug │ ├── pugPreserveWhitespace │ │ ├── formatted-false.pug │ │ ├── formatted-true.pug │ │ ├── pug-preserve-whitespace.test.ts │ │ └── unformatted.pug │ ├── pugTemplateTagIndentation │ │ ├── indented.vue │ │ ├── not-indented.md │ │ ├── not-indented.vue │ │ ├── pug-template-tag-indentation.test.ts │ │ ├── two-div-indented-flat.vue │ │ ├── two-div-indented-tree.vue │ │ ├── two-div-not-indented-flat.vue │ │ └── two-div-not-indented-tree.vue │ ├── pugWrapAttributesPattern │ │ ├── formatted.pug │ │ ├── unformatted.pug │ │ └── wrap-attributes-pattern.test.ts │ ├── pugWrapAttributesThreshold │ │ ├── 0 │ │ │ ├── 0.test.ts │ │ │ ├── formatted.pug │ │ │ └── unformatted.pug │ │ ├── 1 │ │ │ ├── 1.test.ts │ │ │ ├── formatted.pug │ │ │ └── unformatted.pug │ │ ├── 2 │ │ │ ├── 2.test.ts │ │ │ ├── formatted.pug │ │ │ └── unformatted.pug │ │ ├── default │ │ │ ├── default.test.ts │ │ │ ├── formatted.pug │ │ │ └── unformatted.pug │ │ ├── withAsIsClassNotation │ │ │ ├── formatted.pug │ │ │ ├── unformatted.pug │ │ │ └── with-as-is-class-notation.test.ts │ │ ├── withAsIsIdNotation │ │ │ ├── formatted.pug │ │ │ ├── unformatted.pug │ │ │ └── with-as-is-id-notation.test.ts │ │ └── withAttributeClassNotation │ │ │ ├── formatted.pug │ │ │ ├── unformatted.pug │ │ │ └── with-attribute-class-notation.test.ts │ ├── semi │ │ ├── none-none │ │ │ ├── formatted.pug │ │ │ └── unformatted.pug │ │ ├── none-semi │ │ │ ├── formatted.pug │ │ │ └── unformatted.pug │ │ ├── semi-none │ │ │ ├── formatted.pug │ │ │ └── unformatted.pug │ │ ├── semi-semi │ │ │ ├── formatted.pug │ │ │ └── unformatted.pug │ │ └── semi.test.ts │ ├── singleQuote │ │ ├── single-false-pug-false │ │ │ ├── formatted.pug │ │ │ ├── single-false-pug-false.test.ts │ │ │ └── unformatted.pug │ │ ├── single-false-pug-true │ │ │ ├── formatted.pug │ │ │ ├── single-false-pug-true.test.ts │ │ │ └── unformatted.pug │ │ ├── single-false │ │ │ ├── formatted.pug │ │ │ ├── single-false.test.ts │ │ │ └── unformatted.pug │ │ ├── single-true-pug-false │ │ │ ├── formatted.pug │ │ │ ├── single-true-pug-false.test.ts │ │ │ └── unformatted.pug │ │ ├── single-true-pug-true │ │ │ ├── formatted.pug │ │ │ ├── single-true-pug-true.test.ts │ │ │ └── unformatted.pug │ │ └── single-true │ │ │ ├── formatted.pug │ │ │ ├── single-true.test.ts │ │ │ └── unformatted.pug │ └── sortAttributes │ │ ├── formatted.pug │ │ ├── sort-attributes.test.ts │ │ └── unformatted.pug ├── plain-text │ ├── formatted.pug │ ├── plain-text.test.ts │ └── unformatted.pug ├── pragma │ ├── detect-pragma │ │ ├── detect-pragma.test.ts │ │ ├── no-pragma.pug │ │ ├── pragma-format.pug │ │ └── pragma-prettier.pug │ └── insert-pragma │ │ ├── insert-pragma.test.ts │ │ ├── no-pragma.pug │ │ └── with-pragma.pug ├── prettier-ignore │ ├── formatted.pug │ ├── prettier-ignore.test.ts │ └── unformatted.pug ├── pug-tests │ ├── attr-es2015.formatted.pug │ ├── attr-es2015.pug │ ├── attrs-data.formatted.pug │ ├── attrs-data.pug │ ├── attrs.unescaped.formatted.pug │ ├── attrs.unescaped.pug │ ├── basic.formatted.pug │ ├── basic.pug │ ├── blanks.formatted.pug │ ├── blanks.pug │ ├── block-code.formatted.pug │ ├── block-code.pug │ ├── block-expansion.formatted.pug │ ├── block-expansion.pug │ ├── block-expansion.shorthands.formatted.pug │ ├── block-expansion.shorthands.pug │ ├── blockquote.formatted.pug │ ├── blockquote.pug │ ├── blocks-in-blocks.formatted.pug │ ├── blocks-in-blocks.pug │ ├── blocks-in-if.formatted.pug │ ├── blocks-in-if.pug │ ├── case-blocks.formatted.pug │ ├── case-blocks.pug │ ├── case.formatted.pug │ ├── case.pug │ ├── classes-empty.formatted.pug │ ├── classes-empty.pug │ ├── classes.formatted.pug │ ├── classes.pug │ ├── code.conditionals.formatted.pug │ ├── code.conditionals.pug │ ├── code.escape.formatted.pug │ ├── code.escape.pug │ ├── code.formatted.pug │ ├── code.iteration.formatted.pug │ ├── code.iteration.pug │ ├── code.pug │ ├── comments-in-case.formatted.pug │ ├── comments-in-case.pug │ ├── comments.source.formatted.pug │ ├── comments.source.pug │ ├── doctype.custom.formatted.pug │ ├── doctype.custom.pug │ ├── doctype.default.formatted.pug │ ├── doctype.default.pug │ ├── doctype.keyword.formatted.pug │ ├── doctype.keyword.pug │ ├── each.else.formatted.pug │ ├── each.else.pug │ ├── eachof.formatted.pug │ ├── eachof.pug │ ├── escape-chars.formatted.pug │ ├── escape-chars.pug │ ├── escape-test.formatted.pug │ ├── escape-test.pug │ ├── filter-in-include.formatted.pug │ ├── filter-in-include.pug │ ├── filters-empty.formatted.pug │ ├── filters-empty.pug │ ├── filters.custom.formatted.pug │ ├── filters.custom.pug │ ├── filters.include.custom.formatted.pug │ ├── filters.include.custom.pug │ ├── filters.inline.formatted.pug │ ├── filters.inline.pug │ ├── filters.less.formatted.pug │ ├── filters.less.pug │ ├── filters.markdown.formatted.pug │ ├── filters.markdown.pug │ ├── filters.nested.formatted.pug │ ├── filters.nested.pug │ ├── filters.stylus.formatted.pug │ ├── filters.stylus.pug │ ├── filters.verbatim.formatted.pug │ ├── filters.verbatim.pug │ ├── html.formatted.pug │ ├── html.pug │ ├── html5.formatted.pug │ ├── html5.pug │ ├── include-extends-from-root.formatted.pug │ ├── include-extends-from-root.pug │ ├── include-extends-of-common-template.formatted.pug │ ├── include-extends-of-common-template.pug │ ├── include-extends-relative.formatted.pug │ ├── include-extends-relative.pug │ ├── include-only-text-body.formatted.pug │ ├── include-only-text-body.pug │ ├── include-only-text.formatted.pug │ ├── include-only-text.pug │ ├── include-with-text-head.formatted.pug │ ├── include-with-text-head.pug │ ├── include-with-text.formatted.pug │ ├── include-with-text.pug │ ├── include.script.formatted.pug │ ├── include.script.pug │ ├── include.yield.nested.formatted.pug │ ├── include.yield.nested.pug │ ├── includes-with-ext-js.formatted.pug │ ├── includes-with-ext-js.pug │ ├── includes.formatted.pug │ ├── includes.pug │ ├── inheritance.alert-dialog.formatted.pug │ ├── inheritance.alert-dialog.pug │ ├── inheritance.defaults.formatted.pug │ ├── inheritance.defaults.pug │ ├── inheritance.extend.formatted.pug │ ├── inheritance.extend.include.formatted.pug │ ├── inheritance.extend.include.pug │ ├── inheritance.extend.mixins.block.formatted.pug │ ├── inheritance.extend.mixins.block.pug │ ├── inheritance.extend.pug │ ├── inheritance.extend.recursive.formatted.pug │ ├── inheritance.extend.recursive.pug │ ├── inheritance.extend.whitespace.formatted.pug │ ├── inheritance.extend.whitespace.pug │ ├── inheritance.formatted.pug │ ├── inheritance.pug │ ├── intepolated-elements.formatted.pug │ ├── intepolated-elements.pug │ ├── interpolated-mixin.formatted.pug │ ├── interpolated-mixin.pug │ ├── interpolation.escape.formatted.pug │ ├── interpolation.escape.pug │ ├── layout.append.formatted.pug │ ├── layout.append.pug │ ├── layout.prepend.formatted.pug │ ├── layout.prepend.pug │ ├── mixin-at-end-of-file.formatted.pug │ ├── mixin-at-end-of-file.pug │ ├── mixin-block-with-space.formatted.pug │ ├── mixin-block-with-space.pug │ ├── mixin-hoist.formatted.pug │ ├── mixin-hoist.pug │ ├── mixin-via-include.formatted.pug │ ├── mixin-via-include.pug │ ├── mixin.attrs.formatted.pug │ ├── mixin.attrs.pug │ ├── mixin.block-tag-behaviour.formatted.pug │ ├── mixin.block-tag-behaviour.pug │ ├── mixin.blocks.formatted.pug │ ├── mixin.blocks.pug │ ├── mixins-unused.formatted.pug │ ├── mixins-unused.pug │ ├── mixins.formatted.pug │ ├── mixins.pug │ ├── mixins.rest-args.formatted.pug │ ├── mixins.rest-args.pug │ ├── namespaces.formatted.pug │ ├── namespaces.pug │ ├── nesting.formatted.pug │ ├── nesting.pug │ ├── pipeless-comments.formatted.pug │ ├── pipeless-comments.pug │ ├── pipeless-filters.formatted.pug │ ├── pipeless-filters.pug │ ├── pipeless-tag.formatted.pug │ ├── pipeless-tag.pug │ ├── pre.formatted.pug │ ├── pre.pug │ ├── pug.test.ts │ ├── quotes.formatted.pug │ ├── quotes.pug │ ├── regression.1794.formatted.pug │ ├── regression.1794.pug │ ├── regression.784.formatted.pug │ ├── regression.784.pug │ ├── script.whitespace.formatted.pug │ ├── script.whitespace.pug │ ├── scripts.formatted.pug │ ├── scripts.non-js.formatted.pug │ ├── scripts.non-js.pug │ ├── scripts.pug │ ├── self-closing-html.formatted.pug │ ├── self-closing-html.pug │ ├── single-period.formatted.pug │ ├── single-period.pug │ ├── source.formatted.pug │ ├── source.pug │ ├── styles.formatted.pug │ ├── styles.pug │ ├── tag-blocks.formatted.pug │ ├── tag-blocks.pug │ ├── tag.interpolation.formatted.pug │ ├── tag.interpolation.pug │ ├── text-block.formatted.pug │ ├── text-block.pug │ ├── utf8bom.formatted.pug │ ├── utf8bom.pug │ ├── vars.formatted.pug │ ├── vars.pug │ ├── while.formatted.pug │ ├── while.pug │ ├── xml.formatted.pug │ ├── xml.pug │ ├── yield-before-conditional-head.formatted.pug │ ├── yield-before-conditional-head.pug │ ├── yield-before-conditional.formatted.pug │ ├── yield-before-conditional.pug │ ├── yield-head.formatted.pug │ ├── yield-head.pug │ ├── yield-title-head.formatted.pug │ ├── yield-title-head.pug │ ├── yield-title.formatted.pug │ ├── yield-title.pug │ ├── yield.formatted.pug │ └── yield.pug ├── quotes │ ├── double-to-single │ │ ├── double-to-single.test.ts │ │ ├── formatted.pug │ │ └── unformatted.pug │ └── single-to-double │ │ ├── formatted.pug │ │ ├── single-to-double-quotes.test.ts │ │ └── unformatted.pug ├── slash │ ├── formatted.pug │ ├── slash.test.ts │ └── unformatted.pug ├── spaces │ ├── formatted.pug │ ├── spaces.test.ts │ └── unformatted.pug ├── syntax-errors │ ├── attributes-not-closed.pug │ ├── pipeless-script-tag.pug │ ├── scripts-with-non-js-contents.pug │ └── syntax-errors.test.ts ├── text-html │ ├── formatted.pug │ ├── text-html.test.ts │ └── unformatted.pug ├── unbuffered-code │ ├── formatted.pug │ ├── unbuffered-code.test.ts │ └── unformatted.pug └── yield │ ├── formatted.pug │ ├── unformatted.pug │ └── yield.test.ts ├── tsconfig.json ├── tsup.config.ts └── vitest.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Owner 2 | * @Shinigami92 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Shinigami92] 2 | custom: ['https://www.paypal.com/donate?hosted_button_id=L7GY729FBKTZY'] 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-issue-forms-beta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/.github/ISSUE_TEMPLATE/bug-report-issue-forms-beta.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/coverage-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/.github/workflows/coverage-report.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-manager-strict=false 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/.prettierrc.d.ts -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/README.md -------------------------------------------------------------------------------- /docs/.vitepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/docs/.vitepress/config.ts -------------------------------------------------------------------------------- /docs/.vitepress/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/docs/.vitepress/public/icon.png -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/styles/vars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/docs/.vitepress/theme/styles/vars.css -------------------------------------------------------------------------------- /docs/guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/docs/guide/index.md -------------------------------------------------------------------------------- /docs/guide/pug-specific-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/docs/guide/pug-specific-options.md -------------------------------------------------------------------------------- /docs/guide/standard-prettier-overrides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/docs/guide/standard-prettier-overrides.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/docs/index.md -------------------------------------------------------------------------------- /eslint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/eslint.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | onlyBuiltDependencies: 2 | - esbuild 3 | -------------------------------------------------------------------------------- /src/doctype-shortcut-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/doctype-shortcut-registry.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/options/attribute-sorting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/attribute-sorting/index.ts -------------------------------------------------------------------------------- /src/options/attribute-sorting/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/attribute-sorting/utils.ts -------------------------------------------------------------------------------- /src/options/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/common.ts -------------------------------------------------------------------------------- /src/options/constants.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Category for Prettier's CLI. 3 | */ 4 | export const CATEGORY_PUG: string = 'Pug'; 5 | -------------------------------------------------------------------------------- /src/options/converge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/converge.ts -------------------------------------------------------------------------------- /src/options/empty-attributes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/empty-attributes/index.ts -------------------------------------------------------------------------------- /src/options/empty-attributes/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/empty-attributes/types.ts -------------------------------------------------------------------------------- /src/options/empty-attributes/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/empty-attributes/utils.ts -------------------------------------------------------------------------------- /src/options/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/index.ts -------------------------------------------------------------------------------- /src/options/pug-attribute-separator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/pug-attribute-separator.ts -------------------------------------------------------------------------------- /src/options/pug-class-location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/pug-class-location.ts -------------------------------------------------------------------------------- /src/options/pug-class-notation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/pug-class-notation.ts -------------------------------------------------------------------------------- /src/options/pug-closing-bracket-indent-depth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/pug-closing-bracket-indent-depth.ts -------------------------------------------------------------------------------- /src/options/pug-comment-preserve-spaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/pug-comment-preserve-spaces.ts -------------------------------------------------------------------------------- /src/options/pug-explicit-div.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/pug-explicit-div.ts -------------------------------------------------------------------------------- /src/options/pug-framework.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/pug-framework.ts -------------------------------------------------------------------------------- /src/options/pug-id-notation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/pug-id-notation.ts -------------------------------------------------------------------------------- /src/options/pug-preserve-attribute-brackets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/pug-preserve-attribute-brackets.ts -------------------------------------------------------------------------------- /src/options/pug-preserve-whitespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/pug-preserve-whitespace.ts -------------------------------------------------------------------------------- /src/options/pug-single-file-component-indentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/pug-single-file-component-indentation.ts -------------------------------------------------------------------------------- /src/options/pug-wrap-attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/pug-wrap-attributes.ts -------------------------------------------------------------------------------- /src/options/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/options/types.ts -------------------------------------------------------------------------------- /src/prettier.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/prettier.d.ts -------------------------------------------------------------------------------- /src/printer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/printer.ts -------------------------------------------------------------------------------- /src/utils/angular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/utils/angular.ts -------------------------------------------------------------------------------- /src/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/utils/common.ts -------------------------------------------------------------------------------- /src/utils/script-mime-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/utils/script-mime-types.ts -------------------------------------------------------------------------------- /src/utils/svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/utils/svelte.ts -------------------------------------------------------------------------------- /src/utils/vue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/src/utils/vue.ts -------------------------------------------------------------------------------- /tests/attributes/boolean-attributes/boolean-attributes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/attributes/boolean-attributes/boolean-attributes.test.ts -------------------------------------------------------------------------------- /tests/attributes/boolean-attributes/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/attributes/boolean-attributes/formatted.pug -------------------------------------------------------------------------------- /tests/attributes/boolean-attributes/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/attributes/boolean-attributes/unformatted.pug -------------------------------------------------------------------------------- /tests/attributes/class-attributes/class-attributes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/attributes/class-attributes/class-attributes.test.ts -------------------------------------------------------------------------------- /tests/attributes/class-attributes/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/attributes/class-attributes/formatted.pug -------------------------------------------------------------------------------- /tests/attributes/class-attributes/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/attributes/class-attributes/unformatted.pug -------------------------------------------------------------------------------- /tests/attributes/no-attributes/formatted.pug: -------------------------------------------------------------------------------- 1 | div 2 | div 3 | p Text 4 | -------------------------------------------------------------------------------- /tests/attributes/no-attributes/no-attributes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/attributes/no-attributes/no-attributes.test.ts -------------------------------------------------------------------------------- /tests/attributes/no-attributes/unformatted.pug: -------------------------------------------------------------------------------- 1 | div 2 | div() 3 | p() Text 4 | -------------------------------------------------------------------------------- /tests/attributes/style-attributes/formatted.pug: -------------------------------------------------------------------------------- 1 | a(style={ color: "red", background: "green" }) 2 | -------------------------------------------------------------------------------- /tests/attributes/style-attributes/style-attributes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/attributes/style-attributes/style-attributes.test.ts -------------------------------------------------------------------------------- /tests/attributes/style-attributes/unformatted.pug: -------------------------------------------------------------------------------- 1 | a(style={ color: 'red', background: 'green' } ) 2 | -------------------------------------------------------------------------------- /tests/comments/comments.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/comments/comments.test.ts -------------------------------------------------------------------------------- /tests/comments/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/comments/formatted.pug -------------------------------------------------------------------------------- /tests/comments/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/comments/unformatted.pug -------------------------------------------------------------------------------- /tests/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/common.ts -------------------------------------------------------------------------------- /tests/conditionals/conditionals.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/conditionals/conditionals.test.ts -------------------------------------------------------------------------------- /tests/conditionals/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/conditionals/formatted.pug -------------------------------------------------------------------------------- /tests/conditionals/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/conditionals/unformatted.pug -------------------------------------------------------------------------------- /tests/embed/md/embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/embed/md/embed.test.ts -------------------------------------------------------------------------------- /tests/embed/md/formatted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/embed/md/formatted.md -------------------------------------------------------------------------------- /tests/embed/md/unformatted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/embed/md/unformatted.md -------------------------------------------------------------------------------- /tests/embed/vue/embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/embed/vue/embed.test.ts -------------------------------------------------------------------------------- /tests/embed/vue/formatted-empty-template.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/embed/vue/formatted-empty-template.vue -------------------------------------------------------------------------------- /tests/embed/vue/formatted-html-reference.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/embed/vue/formatted-html-reference.vue -------------------------------------------------------------------------------- /tests/embed/vue/formatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/embed/vue/formatted.vue -------------------------------------------------------------------------------- /tests/embed/vue/unformatted-empty-template.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/embed/vue/unformatted-empty-template.vue -------------------------------------------------------------------------------- /tests/embed/vue/unformatted-html-reference.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/embed/vue/unformatted-html-reference.vue -------------------------------------------------------------------------------- /tests/embed/vue/unformatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/embed/vue/unformatted.vue -------------------------------------------------------------------------------- /tests/frameworks/detection.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/frameworks/detection.test.ts -------------------------------------------------------------------------------- /tests/frameworks/svelte/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/frameworks/svelte/formatted.pug -------------------------------------------------------------------------------- /tests/frameworks/svelte/svelte.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/frameworks/svelte/svelte.test.ts -------------------------------------------------------------------------------- /tests/frameworks/svelte/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/frameworks/svelte/unformatted.pug -------------------------------------------------------------------------------- /tests/frameworks/vue/v-bind/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/frameworks/vue/v-bind/formatted.pug -------------------------------------------------------------------------------- /tests/frameworks/vue/v-bind/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/frameworks/vue/v-bind/unformatted.pug -------------------------------------------------------------------------------- /tests/frameworks/vue/v-bind/v-bind.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/frameworks/vue/v-bind/v-bind.test.ts -------------------------------------------------------------------------------- /tests/frameworks/vue/v-model/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/frameworks/vue/v-model/formatted.pug -------------------------------------------------------------------------------- /tests/frameworks/vue/v-model/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/frameworks/vue/v-model/unformatted.pug -------------------------------------------------------------------------------- /tests/frameworks/vue/v-model/v-model.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/frameworks/vue/v-model/v-model.test.ts -------------------------------------------------------------------------------- /tests/frameworks/vue/v-on/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/frameworks/vue/v-on/formatted.pug -------------------------------------------------------------------------------- /tests/frameworks/vue/v-on/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/frameworks/vue/v-on/unformatted.pug -------------------------------------------------------------------------------- /tests/frameworks/vue/v-on/v-on.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/frameworks/vue/v-on/v-on.test.ts -------------------------------------------------------------------------------- /tests/frameworks/vue/v-slot/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/frameworks/vue/v-slot/formatted.pug -------------------------------------------------------------------------------- /tests/frameworks/vue/v-slot/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/frameworks/vue/v-slot/unformatted.pug -------------------------------------------------------------------------------- /tests/frameworks/vue/v-slot/v-slot.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/frameworks/vue/v-slot/v-slot.test.ts -------------------------------------------------------------------------------- /tests/indents/formatted-2-spaces.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/indents/formatted-2-spaces.pug -------------------------------------------------------------------------------- /tests/indents/formatted-3-spaces.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/indents/formatted-3-spaces.pug -------------------------------------------------------------------------------- /tests/indents/formatted-4-spaces.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/indents/formatted-4-spaces.pug -------------------------------------------------------------------------------- /tests/indents/formatted-tabs.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/indents/formatted-tabs.pug -------------------------------------------------------------------------------- /tests/indents/indents.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/indents/indents.test.ts -------------------------------------------------------------------------------- /tests/indents/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/indents/unformatted.pug -------------------------------------------------------------------------------- /tests/inheritance/blocks/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/inheritance/blocks/formatted.pug -------------------------------------------------------------------------------- /tests/inheritance/blocks/inheritance.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/inheritance/blocks/inheritance.test.ts -------------------------------------------------------------------------------- /tests/inheritance/blocks/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/inheritance/blocks/unformatted.pug -------------------------------------------------------------------------------- /tests/interpolations/formatted_angular.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/interpolations/formatted_angular.pug -------------------------------------------------------------------------------- /tests/interpolations/formatted_none.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/interpolations/formatted_none.pug -------------------------------------------------------------------------------- /tests/interpolations/formatted_vue.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/interpolations/formatted_vue.pug -------------------------------------------------------------------------------- /tests/interpolations/interpolations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/interpolations/interpolations.test.ts -------------------------------------------------------------------------------- /tests/interpolations/unformatted_angular.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/interpolations/unformatted_angular.pug -------------------------------------------------------------------------------- /tests/interpolations/unformatted_none.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/interpolations/unformatted_none.pug -------------------------------------------------------------------------------- /tests/interpolations/unformatted_vue.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/interpolations/unformatted_vue.pug -------------------------------------------------------------------------------- /tests/issues/issue-105/formatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-105/formatted.vue -------------------------------------------------------------------------------- /tests/issues/issue-105/issue-105.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-105/issue-105.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-105/unformatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-105/unformatted.vue -------------------------------------------------------------------------------- /tests/issues/issue-107/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-107/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-107/issue-107.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-107/issue-107.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-107/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-107/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-11/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-11/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-11/issue-11.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-11/issue-11.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-11/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-11/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-110/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-110/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-110/issue-110.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-110/issue-110.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-110/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-110/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-115/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-115/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-115/issue-115.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-115/issue-115.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-115/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-115/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-129/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-129/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-129/issue-129.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-129/issue-129.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-129/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-129/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-145/extends-formatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-145/extends-formatted.vue -------------------------------------------------------------------------------- /tests/issues/issue-145/extends-unformatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-145/extends-unformatted.vue -------------------------------------------------------------------------------- /tests/issues/issue-145/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-145/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-145/formatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-145/formatted.vue -------------------------------------------------------------------------------- /tests/issues/issue-145/issue-145.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-145/issue-145.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-145/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-145/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-145/unformatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-145/unformatted.vue -------------------------------------------------------------------------------- /tests/issues/issue-147/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-147/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-147/issue-147.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-147/issue-147.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-147/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-147/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-148/formatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-148/formatted.vue -------------------------------------------------------------------------------- /tests/issues/issue-148/issue-148.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-148/issue-148.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-148/unformatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-148/unformatted.vue -------------------------------------------------------------------------------- /tests/issues/issue-149/formatted.pug: -------------------------------------------------------------------------------- 1 | strong #[a(href=link, rel="noopener", target="_blank")= link] 2 | -------------------------------------------------------------------------------- /tests/issues/issue-149/issue-149.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-149/issue-149.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-149/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-149/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-156/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-156/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-156/issue-156.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-156/issue-156.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-156/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-156/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-158/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-158/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-158/issue-158.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-158/issue-158.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-158/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-158/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-162/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-162/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-162/issue-162.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-162/issue-162.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-162/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-162/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-169/formatted.pug: -------------------------------------------------------------------------------- 1 | script. 2 | doSomething(!{JSON.stringify(pugLocalVariable)}); 3 | -------------------------------------------------------------------------------- /tests/issues/issue-169/issue-169.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-169/issue-169.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-169/unformatted.pug: -------------------------------------------------------------------------------- 1 | script. 2 | doSomething(!{JSON.stringify(pugLocalVariable)}); 3 | -------------------------------------------------------------------------------- /tests/issues/issue-171/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-171/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-171/issue-171.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-171/issue-171.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-171/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-171/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-176/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-176/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-176/issue-176.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-176/issue-176.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-176/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-176/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-18/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-18/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-18/issue-18.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-18/issue-18.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-18/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-18/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-180/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-180/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-180/issue-180.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-180/issue-180.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-180/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-180/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-182/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-182/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-182/issue-182.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-182/issue-182.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-182/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-182/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-192/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-192/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-192/issue-192.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-192/issue-192.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-192/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-192/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-20/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-20/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-20/issue-20.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-20/issue-20.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-20/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-20/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-206/formatted.pug: -------------------------------------------------------------------------------- 1 | span 2 | | {{ `USD ${getPrice(shopItem)}` }} 3 | -------------------------------------------------------------------------------- /tests/issues/issue-206/issue-206.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-206/issue-206.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-206/unformatted.pug: -------------------------------------------------------------------------------- 1 | span 2 | | {{ `USD ${getPrice(shopItem)}` }} 3 | -------------------------------------------------------------------------------- /tests/issues/issue-238/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-238/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-238/issue-238.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-238/issue-238.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-238/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-238/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-24/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-24/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-24/issue-24.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-24/issue-24.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-24/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-24/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-244/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-244/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-244/issue-244.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-244/issue-244.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-244/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-244/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-250/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-250/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-250/issue-250.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-250/issue-250.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-250/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-250/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-255/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-255/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-255/issue-255.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-255/issue-255.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-255/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-255/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-261/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-261/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-261/issue-261.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-261/issue-261.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-261/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-261/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-262/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-262/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-262/issue-262.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-262/issue-262.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-262/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-262/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-268/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-268/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-268/issue-268.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-268/issue-268.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-268/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-268/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-27/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-27/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-27/issue-27.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-27/issue-27.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-27/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-27/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-278/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-278/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-278/issue-278.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-278/issue-278.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-278/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-278/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-282/class-indented.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-282/class-indented.vue -------------------------------------------------------------------------------- /tests/issues/issue-282/class-not-indented.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-282/class-not-indented.vue -------------------------------------------------------------------------------- /tests/issues/issue-282/id-indented.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-282/id-indented.vue -------------------------------------------------------------------------------- /tests/issues/issue-282/id-not-indented.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-282/id-not-indented.vue -------------------------------------------------------------------------------- /tests/issues/issue-282/issue-282.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-282/issue-282.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-289/formatted.pug: -------------------------------------------------------------------------------- 1 | my-component(#default="{ foo, bar: baz }") 2 | -------------------------------------------------------------------------------- /tests/issues/issue-289/formatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-289/formatted.vue -------------------------------------------------------------------------------- /tests/issues/issue-289/issue-289.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-289/issue-289.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-289/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-289/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-289/unformatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-289/unformatted.vue -------------------------------------------------------------------------------- /tests/issues/issue-29/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-29/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-29/issue-29.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-29/issue-29.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-29/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-29/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-292/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-292/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-292/issue-292.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-292/issue-292.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-292/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-292/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-303/formatted.pug: -------------------------------------------------------------------------------- 1 | .blok(:test-prop="{ inner: '
' }") 2 | -------------------------------------------------------------------------------- /tests/issues/issue-303/issue-303.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-303/issue-303.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-303/unformatted.pug: -------------------------------------------------------------------------------- 1 | .blok(:test-prop="{ inner: '' }") 2 | -------------------------------------------------------------------------------- /tests/issues/issue-307/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-307/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-307/issue-307.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-307/issue-307.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-307/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-307/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-31/formatted.pug: -------------------------------------------------------------------------------- 1 | div!= "Hello
" 2 | -------------------------------------------------------------------------------- /tests/issues/issue-31/issue-31.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-31/issue-31.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-31/unformatted.pug: -------------------------------------------------------------------------------- 1 | div!='Hello
' 2 | -------------------------------------------------------------------------------- /tests/issues/issue-310/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-310/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-310/issue-310.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-310/issue-310.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-310/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-310/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-315/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-315/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-315/issue-315.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-315/issue-315.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-315/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-315/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-317/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-317/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-317/issue-317.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-317/issue-317.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-317/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-317/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-329/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-329/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-329/issue-329.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-329/issue-329.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-329/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-329/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-339/double-quotes.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-339/double-quotes.pug -------------------------------------------------------------------------------- /tests/issues/issue-339/issue-339.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-339/issue-339.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-339/single-quotes.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-339/single-quotes.pug -------------------------------------------------------------------------------- /tests/issues/issue-34/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-34/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-34/issue-34.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-34/issue-34.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-34/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-34/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-362/formatted.pug: -------------------------------------------------------------------------------- 1 | div(v-component-property="{ class: 'Active' }") 2 | -------------------------------------------------------------------------------- /tests/issues/issue-362/formatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-362/formatted.vue -------------------------------------------------------------------------------- /tests/issues/issue-362/issue-362.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-362/issue-362.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-362/unformatted.pug: -------------------------------------------------------------------------------- 1 | div(v-component-property='{ class: "Active" }') 2 | -------------------------------------------------------------------------------- /tests/issues/issue-362/unformatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-362/unformatted.vue -------------------------------------------------------------------------------- /tests/issues/issue-365/formatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-365/formatted.vue -------------------------------------------------------------------------------- /tests/issues/issue-365/issue-365.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-365/issue-365.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-365/unformatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-365/unformatted.vue -------------------------------------------------------------------------------- /tests/issues/issue-38/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-38/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-38/issue-38.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-38/issue-38.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-38/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-38/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-39/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-39/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-39/issue-39.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-39/issue-39.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-39/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-39/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-40/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-40/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-40/issue-40.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-40/issue-40.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-40/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-40/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-402/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-402/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-402/issue-402.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-402/issue-402.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-402/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-402/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-405/formatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-405/formatted.vue -------------------------------------------------------------------------------- /tests/issues/issue-405/issue-405.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-405/issue-405.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-405/unformatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-405/unformatted.vue -------------------------------------------------------------------------------- /tests/issues/issue-417/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-417/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-417/issue-417.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-417/issue-417.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-417/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-417/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-425/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-425/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-425/issue-425.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-425/issue-425.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-425/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-425/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-428/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-428/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-428/issue-428.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-428/issue-428.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-428/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-428/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-439/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-439/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-439/issue-439.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-439/issue-439.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-439/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-439/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-447/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-447/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-447/issue-447.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-447/issue-447.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-447/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-447/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-486/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-486/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-486/issue-486.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-486/issue-486.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-486/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-486/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-49/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-49/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-49/issue-49.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-49/issue-49.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-49/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-49/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-51/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-51/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-51/issue-51.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-51/issue-51.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-51/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-51/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-52/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-52/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-52/issue-52.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-52/issue-52.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-52/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-52/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-58/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-58/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-58/issue-58.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-58/issue-58.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-58/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-58/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-59/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-59/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-59/issue-59.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-59/issue-59.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-59/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-59/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-61/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-61/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-61/issue-61.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-61/issue-61.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-61/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-61/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-63/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-63/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-63/issue-63.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-63/issue-63.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-63/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-63/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-65/formatted.pug: -------------------------------------------------------------------------------- 1 | extends layout 2 | 3 | block append head 4 | -------------------------------------------------------------------------------- /tests/issues/issue-65/issue-65.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-65/issue-65.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-65/unformatted.pug: -------------------------------------------------------------------------------- 1 | extends layout 2 | 3 | block append head 4 | -------------------------------------------------------------------------------- /tests/issues/issue-67/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-67/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-67/issue-67.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-67/issue-67.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-67/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-67/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-70/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-70/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-70/issue-70.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-70/issue-70.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-70/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-70/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-80/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-80/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-80/issue-80.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-80/issue-80.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-80/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-80/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-85/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-85/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-85/issue-85.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-85/issue-85.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-85/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-85/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-89/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-89/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-89/issue-89.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-89/issue-89.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-89/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-89/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-9/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-9/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-9/issue-9.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-9/issue-9.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-9/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-9/unformatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-95/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-95/formatted.pug -------------------------------------------------------------------------------- /tests/issues/issue-95/issue-95.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-95/issue-95.test.ts -------------------------------------------------------------------------------- /tests/issues/issue-95/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/issues/issue-95/unformatted.pug -------------------------------------------------------------------------------- /tests/literals/class-literals/class-literals.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/literals/class-literals/class-literals.test.ts -------------------------------------------------------------------------------- /tests/literals/class-literals/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/literals/class-literals/formatted.pug -------------------------------------------------------------------------------- /tests/literals/class-literals/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/literals/class-literals/unformatted.pug -------------------------------------------------------------------------------- /tests/literals/id-class-literals/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/literals/id-class-literals/formatted.pug -------------------------------------------------------------------------------- /tests/literals/id-class-literals/id-class-literals.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/literals/id-class-literals/id-class-literals.test.ts -------------------------------------------------------------------------------- /tests/literals/id-class-literals/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/literals/id-class-literals/unformatted.pug -------------------------------------------------------------------------------- /tests/literals/id-literals/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/literals/id-literals/formatted.pug -------------------------------------------------------------------------------- /tests/literals/id-literals/id-literals.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/literals/id-literals/id-literals.test.ts -------------------------------------------------------------------------------- /tests/literals/id-literals/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/literals/id-literals/unformatted.pug -------------------------------------------------------------------------------- /tests/literals/matching-content/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/literals/matching-content/formatted.pug -------------------------------------------------------------------------------- /tests/literals/matching-content/matching-content.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/literals/matching-content/matching-content.test.ts -------------------------------------------------------------------------------- /tests/literals/matching-content/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/literals/matching-content/unformatted.pug -------------------------------------------------------------------------------- /tests/mixins/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/mixins/formatted.pug -------------------------------------------------------------------------------- /tests/mixins/mixins.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/mixins/mixins.test.ts -------------------------------------------------------------------------------- /tests/mixins/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/mixins/unformatted.pug -------------------------------------------------------------------------------- /tests/options/bracketSameLine/bracket-same-line.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/bracketSameLine/bracket-same-line.test.ts -------------------------------------------------------------------------------- /tests/options/bracketSameLine/new-line.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/bracketSameLine/new-line.pug -------------------------------------------------------------------------------- /tests/options/bracketSameLine/same-line.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/bracketSameLine/same-line.pug -------------------------------------------------------------------------------- /tests/options/bracketSameLine/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/bracketSameLine/unformatted.pug -------------------------------------------------------------------------------- /tests/options/bracketSpacing/bracket-spacing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/bracketSpacing/bracket-spacing.test.ts -------------------------------------------------------------------------------- /tests/options/bracketSpacing/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/bracketSpacing/formatted.pug -------------------------------------------------------------------------------- /tests/options/bracketSpacing/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/bracketSpacing/unformatted.pug -------------------------------------------------------------------------------- /tests/options/emptyAttributes/empty-attributes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/emptyAttributes/empty-attributes.test.ts -------------------------------------------------------------------------------- /tests/options/emptyAttributes/formatted.pug: -------------------------------------------------------------------------------- 1 | input(type="text", disabled, readonly, foo="") 2 | -------------------------------------------------------------------------------- /tests/options/emptyAttributes/unformatted.pug: -------------------------------------------------------------------------------- 1 | input(type="text" disabled=true readonly="" foo) 2 | -------------------------------------------------------------------------------- /tests/options/printWidth/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/printWidth/formatted.pug -------------------------------------------------------------------------------- /tests/options/printWidth/print-width.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/printWidth/print-width.test.ts -------------------------------------------------------------------------------- /tests/options/printWidth/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/printWidth/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugAttributeSeparator/always/always.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugAttributeSeparator/always/always.test.ts -------------------------------------------------------------------------------- /tests/options/pugAttributeSeparator/always/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugAttributeSeparator/always/formatted.pug -------------------------------------------------------------------------------- /tests/options/pugAttributeSeparator/always/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugAttributeSeparator/always/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugAttributeSeparator/as-needed/as-needed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugAttributeSeparator/as-needed/as-needed.test.ts -------------------------------------------------------------------------------- /tests/options/pugAttributeSeparator/as-needed/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugAttributeSeparator/as-needed/formatted.pug -------------------------------------------------------------------------------- /tests/options/pugAttributeSeparator/as-needed/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugAttributeSeparator/as-needed/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugAttributeSeparator/none/angular-formatted.pug: -------------------------------------------------------------------------------- 1 | button(type="submit" (click)="play()" disabled) 2 | -------------------------------------------------------------------------------- /tests/options/pugAttributeSeparator/none/angular-unformatted.pug: -------------------------------------------------------------------------------- 1 | button(type="submit", (click)="play()", disabled) 2 | -------------------------------------------------------------------------------- /tests/options/pugAttributeSeparator/none/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugAttributeSeparator/none/formatted.pug -------------------------------------------------------------------------------- /tests/options/pugAttributeSeparator/none/none.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugAttributeSeparator/none/none.test.ts -------------------------------------------------------------------------------- /tests/options/pugAttributeSeparator/none/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugAttributeSeparator/none/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugClassLocation/formatted-after.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugClassLocation/formatted-after.pug -------------------------------------------------------------------------------- /tests/options/pugClassLocation/formatted-before.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugClassLocation/formatted-before.pug -------------------------------------------------------------------------------- /tests/options/pugClassLocation/pug-class-location.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugClassLocation/pug-class-location.test.ts -------------------------------------------------------------------------------- /tests/options/pugClassLocation/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugClassLocation/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugClassNotation/formatted-as-is.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugClassNotation/formatted-as-is.pug -------------------------------------------------------------------------------- /tests/options/pugClassNotation/formatted-attribute.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugClassNotation/formatted-attribute.pug -------------------------------------------------------------------------------- /tests/options/pugClassNotation/formatted-literal.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugClassNotation/formatted-literal.pug -------------------------------------------------------------------------------- /tests/options/pugClassNotation/pug-class-notation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugClassNotation/pug-class-notation.test.ts -------------------------------------------------------------------------------- /tests/options/pugClassNotation/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugClassNotation/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugClosingBracketIndentDepth/depth-0.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugClosingBracketIndentDepth/depth-0.pug -------------------------------------------------------------------------------- /tests/options/pugClosingBracketIndentDepth/depth-1.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugClosingBracketIndentDepth/depth-1.pug -------------------------------------------------------------------------------- /tests/options/pugClosingBracketIndentDepth/pug-closing-bracket-indent-depth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugClosingBracketIndentDepth/pug-closing-bracket-indent-depth.test.ts -------------------------------------------------------------------------------- /tests/options/pugClosingBracketIndentDepth/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugClosingBracketIndentDepth/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugCommentPreserveSpaces/keep-all/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugCommentPreserveSpaces/keep-all/formatted.pug -------------------------------------------------------------------------------- /tests/options/pugCommentPreserveSpaces/keep-all/keep-all.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugCommentPreserveSpaces/keep-all/keep-all.test.ts -------------------------------------------------------------------------------- /tests/options/pugCommentPreserveSpaces/keep-all/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugCommentPreserveSpaces/keep-all/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugCommentPreserveSpaces/keep-leading/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugCommentPreserveSpaces/keep-leading/formatted.pug -------------------------------------------------------------------------------- /tests/options/pugCommentPreserveSpaces/keep-leading/keep-leading.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugCommentPreserveSpaces/keep-leading/keep-leading.test.ts -------------------------------------------------------------------------------- /tests/options/pugCommentPreserveSpaces/keep-leading/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugCommentPreserveSpaces/keep-leading/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugCommentPreserveSpaces/trim-all/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugCommentPreserveSpaces/trim-all/formatted.pug -------------------------------------------------------------------------------- /tests/options/pugCommentPreserveSpaces/trim-all/trim-all.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugCommentPreserveSpaces/trim-all/trim-all.test.ts -------------------------------------------------------------------------------- /tests/options/pugCommentPreserveSpaces/trim-all/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugCommentPreserveSpaces/trim-all/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugExplicitDiv/formatted-explicit-div.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugExplicitDiv/formatted-explicit-div.pug -------------------------------------------------------------------------------- /tests/options/pugExplicitDiv/formatted-implicit-div.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugExplicitDiv/formatted-implicit-div.pug -------------------------------------------------------------------------------- /tests/options/pugExplicitDiv/pug-explicit-div.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugExplicitDiv/pug-explicit-div.test.ts -------------------------------------------------------------------------------- /tests/options/pugExplicitDiv/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugExplicitDiv/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugIdNotation/formatted-attribute.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugIdNotation/formatted-attribute.pug -------------------------------------------------------------------------------- /tests/options/pugIdNotation/formatted-literal.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugIdNotation/formatted-literal.pug -------------------------------------------------------------------------------- /tests/options/pugIdNotation/pug-id-notation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugIdNotation/pug-id-notation.test.ts -------------------------------------------------------------------------------- /tests/options/pugPreserveAttributeBrackets/formatted-false.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugPreserveAttributeBrackets/formatted-false.pug -------------------------------------------------------------------------------- /tests/options/pugPreserveAttributeBrackets/formatted-true.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugPreserveAttributeBrackets/formatted-true.pug -------------------------------------------------------------------------------- /tests/options/pugPreserveAttributeBrackets/pug-preserve-attribute-brackets.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugPreserveAttributeBrackets/pug-preserve-attribute-brackets.test.ts -------------------------------------------------------------------------------- /tests/options/pugPreserveAttributeBrackets/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugPreserveAttributeBrackets/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugPreserveWhitespace/formatted-false.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugPreserveWhitespace/formatted-false.pug -------------------------------------------------------------------------------- /tests/options/pugPreserveWhitespace/formatted-true.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugPreserveWhitespace/formatted-true.pug -------------------------------------------------------------------------------- /tests/options/pugPreserveWhitespace/pug-preserve-whitespace.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugPreserveWhitespace/pug-preserve-whitespace.test.ts -------------------------------------------------------------------------------- /tests/options/pugPreserveWhitespace/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugPreserveWhitespace/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugTemplateTagIndentation/indented.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugTemplateTagIndentation/indented.vue -------------------------------------------------------------------------------- /tests/options/pugTemplateTagIndentation/not-indented.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugTemplateTagIndentation/not-indented.md -------------------------------------------------------------------------------- /tests/options/pugTemplateTagIndentation/not-indented.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugTemplateTagIndentation/not-indented.vue -------------------------------------------------------------------------------- /tests/options/pugTemplateTagIndentation/pug-template-tag-indentation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugTemplateTagIndentation/pug-template-tag-indentation.test.ts -------------------------------------------------------------------------------- /tests/options/pugTemplateTagIndentation/two-div-indented-flat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugTemplateTagIndentation/two-div-indented-flat.vue -------------------------------------------------------------------------------- /tests/options/pugTemplateTagIndentation/two-div-indented-tree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugTemplateTagIndentation/two-div-indented-tree.vue -------------------------------------------------------------------------------- /tests/options/pugTemplateTagIndentation/two-div-not-indented-flat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugTemplateTagIndentation/two-div-not-indented-flat.vue -------------------------------------------------------------------------------- /tests/options/pugTemplateTagIndentation/two-div-not-indented-tree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugTemplateTagIndentation/two-div-not-indented-tree.vue -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesPattern/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesPattern/formatted.pug -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesPattern/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesPattern/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesPattern/wrap-attributes-pattern.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesPattern/wrap-attributes-pattern.test.ts -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/0/0.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/0/0.test.ts -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/0/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/0/formatted.pug -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/0/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/0/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/1/1.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/1/1.test.ts -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/1/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/1/formatted.pug -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/1/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/1/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/2/2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/2/2.test.ts -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/2/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/2/formatted.pug -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/2/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/2/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/default/default.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/default/default.test.ts -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/default/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/default/formatted.pug -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/default/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/default/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/withAsIsClassNotation/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/withAsIsClassNotation/formatted.pug -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/withAsIsClassNotation/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/withAsIsClassNotation/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/withAsIsClassNotation/with-as-is-class-notation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/withAsIsClassNotation/with-as-is-class-notation.test.ts -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/withAsIsIdNotation/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/withAsIsIdNotation/formatted.pug -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/withAsIsIdNotation/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/withAsIsIdNotation/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/withAsIsIdNotation/with-as-is-id-notation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/withAsIsIdNotation/with-as-is-id-notation.test.ts -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/withAttributeClassNotation/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/withAttributeClassNotation/formatted.pug -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/withAttributeClassNotation/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/withAttributeClassNotation/unformatted.pug -------------------------------------------------------------------------------- /tests/options/pugWrapAttributesThreshold/withAttributeClassNotation/with-attribute-class-notation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/pugWrapAttributesThreshold/withAttributeClassNotation/with-attribute-class-notation.test.ts -------------------------------------------------------------------------------- /tests/options/semi/none-none/formatted.pug: -------------------------------------------------------------------------------- 1 | script. 2 | console.log("test") 3 | -------------------------------------------------------------------------------- /tests/options/semi/none-none/unformatted.pug: -------------------------------------------------------------------------------- 1 | script. 2 | console.log("test") 3 | -------------------------------------------------------------------------------- /tests/options/semi/none-semi/formatted.pug: -------------------------------------------------------------------------------- 1 | script. 2 | console.log("test"); 3 | -------------------------------------------------------------------------------- /tests/options/semi/none-semi/unformatted.pug: -------------------------------------------------------------------------------- 1 | script. 2 | console.log("test") 3 | -------------------------------------------------------------------------------- /tests/options/semi/semi-none/formatted.pug: -------------------------------------------------------------------------------- 1 | script. 2 | console.log("test") 3 | -------------------------------------------------------------------------------- /tests/options/semi/semi-none/unformatted.pug: -------------------------------------------------------------------------------- 1 | script. 2 | console.log("test"); 3 | -------------------------------------------------------------------------------- /tests/options/semi/semi-semi/formatted.pug: -------------------------------------------------------------------------------- 1 | script. 2 | console.log("test"); 3 | -------------------------------------------------------------------------------- /tests/options/semi/semi-semi/unformatted.pug: -------------------------------------------------------------------------------- 1 | script. 2 | console.log("test"); 3 | -------------------------------------------------------------------------------- /tests/options/semi/semi.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/semi/semi.test.ts -------------------------------------------------------------------------------- /tests/options/singleQuote/single-false-pug-false/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/singleQuote/single-false-pug-false/formatted.pug -------------------------------------------------------------------------------- /tests/options/singleQuote/single-false-pug-false/single-false-pug-false.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/singleQuote/single-false-pug-false/single-false-pug-false.test.ts -------------------------------------------------------------------------------- /tests/options/singleQuote/single-false-pug-false/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/singleQuote/single-false-pug-false/unformatted.pug -------------------------------------------------------------------------------- /tests/options/singleQuote/single-false-pug-true/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/singleQuote/single-false-pug-true/formatted.pug -------------------------------------------------------------------------------- /tests/options/singleQuote/single-false-pug-true/single-false-pug-true.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/singleQuote/single-false-pug-true/single-false-pug-true.test.ts -------------------------------------------------------------------------------- /tests/options/singleQuote/single-false-pug-true/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/singleQuote/single-false-pug-true/unformatted.pug -------------------------------------------------------------------------------- /tests/options/singleQuote/single-false/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/singleQuote/single-false/formatted.pug -------------------------------------------------------------------------------- /tests/options/singleQuote/single-false/single-false.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/singleQuote/single-false/single-false.test.ts -------------------------------------------------------------------------------- /tests/options/singleQuote/single-false/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/singleQuote/single-false/unformatted.pug -------------------------------------------------------------------------------- /tests/options/singleQuote/single-true-pug-false/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/singleQuote/single-true-pug-false/formatted.pug -------------------------------------------------------------------------------- /tests/options/singleQuote/single-true-pug-false/single-true-pug-false.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/singleQuote/single-true-pug-false/single-true-pug-false.test.ts -------------------------------------------------------------------------------- /tests/options/singleQuote/single-true-pug-false/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/singleQuote/single-true-pug-false/unformatted.pug -------------------------------------------------------------------------------- /tests/options/singleQuote/single-true-pug-true/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/singleQuote/single-true-pug-true/formatted.pug -------------------------------------------------------------------------------- /tests/options/singleQuote/single-true-pug-true/single-true-pug-true.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/singleQuote/single-true-pug-true/single-true-pug-true.test.ts -------------------------------------------------------------------------------- /tests/options/singleQuote/single-true-pug-true/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/singleQuote/single-true-pug-true/unformatted.pug -------------------------------------------------------------------------------- /tests/options/singleQuote/single-true/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/singleQuote/single-true/formatted.pug -------------------------------------------------------------------------------- /tests/options/singleQuote/single-true/single-true.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/singleQuote/single-true/single-true.test.ts -------------------------------------------------------------------------------- /tests/options/singleQuote/single-true/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/singleQuote/single-true/unformatted.pug -------------------------------------------------------------------------------- /tests/options/sortAttributes/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/sortAttributes/formatted.pug -------------------------------------------------------------------------------- /tests/options/sortAttributes/sort-attributes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/sortAttributes/sort-attributes.test.ts -------------------------------------------------------------------------------- /tests/options/sortAttributes/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/options/sortAttributes/unformatted.pug -------------------------------------------------------------------------------- /tests/plain-text/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/plain-text/formatted.pug -------------------------------------------------------------------------------- /tests/plain-text/plain-text.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/plain-text/plain-text.test.ts -------------------------------------------------------------------------------- /tests/plain-text/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/plain-text/unformatted.pug -------------------------------------------------------------------------------- /tests/pragma/detect-pragma/detect-pragma.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pragma/detect-pragma/detect-pragma.test.ts -------------------------------------------------------------------------------- /tests/pragma/detect-pragma/no-pragma.pug: -------------------------------------------------------------------------------- 1 | //- test 2 | 3 | p #{name}'s Pug source code! 4 | -------------------------------------------------------------------------------- /tests/pragma/detect-pragma/pragma-format.pug: -------------------------------------------------------------------------------- 1 | //- @format 2 | 3 | p #{name}'s Pug source code! 4 | -------------------------------------------------------------------------------- /tests/pragma/detect-pragma/pragma-prettier.pug: -------------------------------------------------------------------------------- 1 | //- @prettier 2 | 3 | p #{name}'s Pug source code! 4 | -------------------------------------------------------------------------------- /tests/pragma/insert-pragma/insert-pragma.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pragma/insert-pragma/insert-pragma.test.ts -------------------------------------------------------------------------------- /tests/pragma/insert-pragma/no-pragma.pug: -------------------------------------------------------------------------------- 1 | //- test 2 | 3 | p #{name}'s Pug source code! 4 | -------------------------------------------------------------------------------- /tests/pragma/insert-pragma/with-pragma.pug: -------------------------------------------------------------------------------- 1 | //- @prettier 2 | //- test 3 | 4 | p #{name}'s Pug source code! 5 | -------------------------------------------------------------------------------- /tests/prettier-ignore/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/prettier-ignore/formatted.pug -------------------------------------------------------------------------------- /tests/prettier-ignore/prettier-ignore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/prettier-ignore/prettier-ignore.test.ts -------------------------------------------------------------------------------- /tests/prettier-ignore/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/prettier-ignore/unformatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/attr-es2015.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/attr-es2015.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/attr-es2015.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/attr-es2015.pug -------------------------------------------------------------------------------- /tests/pug-tests/attrs-data.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/attrs-data.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/attrs-data.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/attrs-data.pug -------------------------------------------------------------------------------- /tests/pug-tests/attrs.unescaped.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/attrs.unescaped.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/attrs.unescaped.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/attrs.unescaped.pug -------------------------------------------------------------------------------- /tests/pug-tests/basic.formatted.pug: -------------------------------------------------------------------------------- 1 | html 2 | body 3 | h1 Title 4 | -------------------------------------------------------------------------------- /tests/pug-tests/basic.pug: -------------------------------------------------------------------------------- 1 | html 2 | body 3 | h1 Title -------------------------------------------------------------------------------- /tests/pug-tests/blanks.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/blanks.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/blanks.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/blanks.pug -------------------------------------------------------------------------------- /tests/pug-tests/block-code.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/block-code.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/block-code.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/block-code.pug -------------------------------------------------------------------------------- /tests/pug-tests/block-expansion.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/block-expansion.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/block-expansion.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/block-expansion.pug -------------------------------------------------------------------------------- /tests/pug-tests/block-expansion.shorthands.formatted.pug: -------------------------------------------------------------------------------- 1 | ul 2 | li.list-item: .foo: #bar baz 3 | -------------------------------------------------------------------------------- /tests/pug-tests/block-expansion.shorthands.pug: -------------------------------------------------------------------------------- 1 | ul 2 | li.list-item: .foo: #bar baz -------------------------------------------------------------------------------- /tests/pug-tests/blockquote.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/blockquote.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/blockquote.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/blockquote.pug -------------------------------------------------------------------------------- /tests/pug-tests/blocks-in-blocks.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/blocks-in-blocks.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/blocks-in-blocks.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/blocks-in-blocks.pug -------------------------------------------------------------------------------- /tests/pug-tests/blocks-in-if.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/blocks-in-if.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/blocks-in-if.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/blocks-in-if.pug -------------------------------------------------------------------------------- /tests/pug-tests/case-blocks.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/case-blocks.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/case-blocks.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/case-blocks.pug -------------------------------------------------------------------------------- /tests/pug-tests/case.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/case.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/case.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/case.pug -------------------------------------------------------------------------------- /tests/pug-tests/classes-empty.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/classes-empty.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/classes-empty.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/classes-empty.pug -------------------------------------------------------------------------------- /tests/pug-tests/classes.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/classes.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/classes.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/classes.pug -------------------------------------------------------------------------------- /tests/pug-tests/code.conditionals.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/code.conditionals.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/code.conditionals.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/code.conditionals.pug -------------------------------------------------------------------------------- /tests/pug-tests/code.escape.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/code.escape.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/code.escape.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/code.escape.pug -------------------------------------------------------------------------------- /tests/pug-tests/code.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/code.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/code.iteration.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/code.iteration.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/code.iteration.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/code.iteration.pug -------------------------------------------------------------------------------- /tests/pug-tests/code.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/code.pug -------------------------------------------------------------------------------- /tests/pug-tests/comments-in-case.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/comments-in-case.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/comments-in-case.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/comments-in-case.pug -------------------------------------------------------------------------------- /tests/pug-tests/comments.source.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/comments.source.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/comments.source.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/comments.source.pug -------------------------------------------------------------------------------- /tests/pug-tests/doctype.custom.formatted.pug: -------------------------------------------------------------------------------- 1 | doctype custom stuff 2 | -------------------------------------------------------------------------------- /tests/pug-tests/doctype.custom.pug: -------------------------------------------------------------------------------- 1 | doctype custom stuff -------------------------------------------------------------------------------- /tests/pug-tests/doctype.default.formatted.pug: -------------------------------------------------------------------------------- 1 | doctype 2 | html 3 | body 4 | h1 Title 5 | -------------------------------------------------------------------------------- /tests/pug-tests/doctype.default.pug: -------------------------------------------------------------------------------- 1 | doctype 2 | html 3 | body 4 | h1 Title -------------------------------------------------------------------------------- /tests/pug-tests/doctype.keyword.formatted.pug: -------------------------------------------------------------------------------- 1 | doctype html 2 | -------------------------------------------------------------------------------- /tests/pug-tests/doctype.keyword.pug: -------------------------------------------------------------------------------- 1 | doctype html -------------------------------------------------------------------------------- /tests/pug-tests/each.else.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/each.else.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/each.else.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/each.else.pug -------------------------------------------------------------------------------- /tests/pug-tests/eachof.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/eachof.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/eachof.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/eachof.pug -------------------------------------------------------------------------------- /tests/pug-tests/escape-chars.formatted.pug: -------------------------------------------------------------------------------- 1 | script. 2 | var re = /\d+/; 3 | -------------------------------------------------------------------------------- /tests/pug-tests/escape-chars.pug: -------------------------------------------------------------------------------- 1 | script. 2 | var re = /\d+/; -------------------------------------------------------------------------------- /tests/pug-tests/escape-test.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/escape-test.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/escape-test.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/escape-test.pug -------------------------------------------------------------------------------- /tests/pug-tests/filter-in-include.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/filter-in-include.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/filter-in-include.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/filter-in-include.pug -------------------------------------------------------------------------------- /tests/pug-tests/filters-empty.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/filters-empty.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/filters-empty.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/filters-empty.pug -------------------------------------------------------------------------------- /tests/pug-tests/filters.custom.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/filters.custom.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/filters.custom.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/filters.custom.pug -------------------------------------------------------------------------------- /tests/pug-tests/filters.include.custom.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/filters.include.custom.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/filters.include.custom.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/filters.include.custom.pug -------------------------------------------------------------------------------- /tests/pug-tests/filters.inline.formatted.pug: -------------------------------------------------------------------------------- 1 | p before #[:cdata inside] after 2 | -------------------------------------------------------------------------------- /tests/pug-tests/filters.inline.pug: -------------------------------------------------------------------------------- 1 | p before #[:cdata inside] after -------------------------------------------------------------------------------- /tests/pug-tests/filters.less.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/filters.less.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/filters.less.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/filters.less.pug -------------------------------------------------------------------------------- /tests/pug-tests/filters.markdown.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/filters.markdown.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/filters.markdown.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/filters.markdown.pug -------------------------------------------------------------------------------- /tests/pug-tests/filters.nested.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/filters.nested.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/filters.nested.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/filters.nested.pug -------------------------------------------------------------------------------- /tests/pug-tests/filters.stylus.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/filters.stylus.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/filters.stylus.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/filters.stylus.pug -------------------------------------------------------------------------------- /tests/pug-tests/filters.verbatim.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/filters.verbatim.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/filters.verbatim.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/filters.verbatim.pug -------------------------------------------------------------------------------- /tests/pug-tests/html.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/html.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/html.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/html.pug -------------------------------------------------------------------------------- /tests/pug-tests/html5.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/html5.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/html5.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/html5.pug -------------------------------------------------------------------------------- /tests/pug-tests/include-extends-from-root.formatted.pug: -------------------------------------------------------------------------------- 1 | include /auxiliary/extends-from-root.pug 2 | -------------------------------------------------------------------------------- /tests/pug-tests/include-extends-from-root.pug: -------------------------------------------------------------------------------- 1 | include /auxiliary/extends-from-root.pug 2 | -------------------------------------------------------------------------------- /tests/pug-tests/include-extends-of-common-template.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/include-extends-of-common-template.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/include-extends-of-common-template.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/include-extends-of-common-template.pug -------------------------------------------------------------------------------- /tests/pug-tests/include-extends-relative.formatted.pug: -------------------------------------------------------------------------------- 1 | include ../cases/auxiliary/extends-relative.pug 2 | -------------------------------------------------------------------------------- /tests/pug-tests/include-extends-relative.pug: -------------------------------------------------------------------------------- 1 | include ../cases/auxiliary/extends-relative.pug 2 | -------------------------------------------------------------------------------- /tests/pug-tests/include-only-text-body.formatted.pug: -------------------------------------------------------------------------------- 1 | | The message is " 2 | yield 3 | | " 4 | -------------------------------------------------------------------------------- /tests/pug-tests/include-only-text-body.pug: -------------------------------------------------------------------------------- 1 | | The message is " 2 | yield 3 | | " 4 | -------------------------------------------------------------------------------- /tests/pug-tests/include-only-text.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/include-only-text.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/include-only-text.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/include-only-text.pug -------------------------------------------------------------------------------- /tests/pug-tests/include-with-text-head.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/include-with-text-head.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/include-with-text-head.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/include-with-text-head.pug -------------------------------------------------------------------------------- /tests/pug-tests/include-with-text.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/include-with-text.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/include-with-text.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/include-with-text.pug -------------------------------------------------------------------------------- /tests/pug-tests/include.script.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/include.script.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/include.script.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/include.script.pug -------------------------------------------------------------------------------- /tests/pug-tests/include.yield.nested.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/include.yield.nested.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/include.yield.nested.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/include.yield.nested.pug -------------------------------------------------------------------------------- /tests/pug-tests/includes-with-ext-js.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/includes-with-ext-js.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/includes-with-ext-js.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/includes-with-ext-js.pug -------------------------------------------------------------------------------- /tests/pug-tests/includes.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/includes.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/includes.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/includes.pug -------------------------------------------------------------------------------- /tests/pug-tests/inheritance.alert-dialog.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/inheritance.alert-dialog.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/inheritance.alert-dialog.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/inheritance.alert-dialog.pug -------------------------------------------------------------------------------- /tests/pug-tests/inheritance.defaults.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/inheritance.defaults.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/inheritance.defaults.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/inheritance.defaults.pug -------------------------------------------------------------------------------- /tests/pug-tests/inheritance.extend.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/inheritance.extend.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/inheritance.extend.include.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/inheritance.extend.include.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/inheritance.extend.include.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/inheritance.extend.include.pug -------------------------------------------------------------------------------- /tests/pug-tests/inheritance.extend.mixins.block.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/inheritance.extend.mixins.block.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/inheritance.extend.mixins.block.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/inheritance.extend.mixins.block.pug -------------------------------------------------------------------------------- /tests/pug-tests/inheritance.extend.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/inheritance.extend.pug -------------------------------------------------------------------------------- /tests/pug-tests/inheritance.extend.recursive.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/inheritance.extend.recursive.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/inheritance.extend.recursive.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/inheritance.extend.recursive.pug -------------------------------------------------------------------------------- /tests/pug-tests/inheritance.extend.whitespace.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/inheritance.extend.whitespace.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/inheritance.extend.whitespace.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/inheritance.extend.whitespace.pug -------------------------------------------------------------------------------- /tests/pug-tests/inheritance.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/inheritance.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/inheritance.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/inheritance.pug -------------------------------------------------------------------------------- /tests/pug-tests/intepolated-elements.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/intepolated-elements.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/intepolated-elements.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/intepolated-elements.pug -------------------------------------------------------------------------------- /tests/pug-tests/interpolated-mixin.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/interpolated-mixin.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/interpolated-mixin.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/interpolated-mixin.pug -------------------------------------------------------------------------------- /tests/pug-tests/interpolation.escape.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/interpolation.escape.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/interpolation.escape.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/interpolation.escape.pug -------------------------------------------------------------------------------- /tests/pug-tests/layout.append.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/layout.append.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/layout.append.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/layout.append.pug -------------------------------------------------------------------------------- /tests/pug-tests/layout.prepend.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/layout.prepend.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/layout.prepend.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/layout.prepend.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixin-at-end-of-file.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixin-at-end-of-file.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixin-at-end-of-file.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixin-at-end-of-file.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixin-block-with-space.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixin-block-with-space.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixin-block-with-space.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixin-block-with-space.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixin-hoist.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixin-hoist.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixin-hoist.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixin-hoist.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixin-via-include.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixin-via-include.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixin-via-include.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixin-via-include.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixin.attrs.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixin.attrs.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixin.attrs.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixin.attrs.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixin.block-tag-behaviour.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixin.block-tag-behaviour.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixin.block-tag-behaviour.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixin.block-tag-behaviour.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixin.blocks.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixin.blocks.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixin.blocks.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixin.blocks.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixins-unused.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixins-unused.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixins-unused.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixins-unused.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixins.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixins.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixins.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixins.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixins.rest-args.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixins.rest-args.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/mixins.rest-args.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/mixins.rest-args.pug -------------------------------------------------------------------------------- /tests/pug-tests/namespaces.formatted.pug: -------------------------------------------------------------------------------- 1 | fb:user:role Something 2 | foo(fb:foo="bar") 3 | -------------------------------------------------------------------------------- /tests/pug-tests/namespaces.pug: -------------------------------------------------------------------------------- 1 | fb:user:role Something 2 | foo(fb:foo='bar') -------------------------------------------------------------------------------- /tests/pug-tests/nesting.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/nesting.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/nesting.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/nesting.pug -------------------------------------------------------------------------------- /tests/pug-tests/pipeless-comments.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/pipeless-comments.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/pipeless-comments.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/pipeless-comments.pug -------------------------------------------------------------------------------- /tests/pug-tests/pipeless-filters.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/pipeless-filters.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/pipeless-filters.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/pipeless-filters.pug -------------------------------------------------------------------------------- /tests/pug-tests/pipeless-tag.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/pipeless-tag.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/pipeless-tag.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/pipeless-tag.pug -------------------------------------------------------------------------------- /tests/pug-tests/pre.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/pre.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/pre.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/pre.pug -------------------------------------------------------------------------------- /tests/pug-tests/pug.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/pug.test.ts -------------------------------------------------------------------------------- /tests/pug-tests/quotes.formatted.pug: -------------------------------------------------------------------------------- 1 | p "foo" 2 | p 'foo' 3 | -------------------------------------------------------------------------------- /tests/pug-tests/quotes.pug: -------------------------------------------------------------------------------- 1 | p "foo" 2 | p 'foo' -------------------------------------------------------------------------------- /tests/pug-tests/regression.1794.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/regression.1794.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/regression.1794.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/regression.1794.pug -------------------------------------------------------------------------------- /tests/pug-tests/regression.784.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/regression.784.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/regression.784.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/regression.784.pug -------------------------------------------------------------------------------- /tests/pug-tests/script.whitespace.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/script.whitespace.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/script.whitespace.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/script.whitespace.pug -------------------------------------------------------------------------------- /tests/pug-tests/scripts.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/scripts.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/scripts.non-js.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/scripts.non-js.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/scripts.non-js.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/scripts.non-js.pug -------------------------------------------------------------------------------- /tests/pug-tests/scripts.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/scripts.pug -------------------------------------------------------------------------------- /tests/pug-tests/self-closing-html.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/self-closing-html.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/self-closing-html.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/self-closing-html.pug -------------------------------------------------------------------------------- /tests/pug-tests/single-period.formatted.pug: -------------------------------------------------------------------------------- 1 | span . 2 | -------------------------------------------------------------------------------- /tests/pug-tests/single-period.pug: -------------------------------------------------------------------------------- 1 | span . -------------------------------------------------------------------------------- /tests/pug-tests/source.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/source.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/source.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/source.pug -------------------------------------------------------------------------------- /tests/pug-tests/styles.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/styles.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/styles.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/styles.pug -------------------------------------------------------------------------------- /tests/pug-tests/tag-blocks.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/tag-blocks.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/tag-blocks.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/tag-blocks.pug -------------------------------------------------------------------------------- /tests/pug-tests/tag.interpolation.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/tag.interpolation.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/tag.interpolation.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/tag.interpolation.pug -------------------------------------------------------------------------------- /tests/pug-tests/text-block.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/text-block.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/text-block.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/text-block.pug -------------------------------------------------------------------------------- /tests/pug-tests/utf8bom.formatted.pug: -------------------------------------------------------------------------------- 1 | p "foo" 2 | -------------------------------------------------------------------------------- /tests/pug-tests/utf8bom.pug: -------------------------------------------------------------------------------- 1 | p "foo" 2 | -------------------------------------------------------------------------------- /tests/pug-tests/vars.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/vars.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/vars.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/vars.pug -------------------------------------------------------------------------------- /tests/pug-tests/while.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/while.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/while.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/while.pug -------------------------------------------------------------------------------- /tests/pug-tests/xml.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/xml.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/xml.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/xml.pug -------------------------------------------------------------------------------- /tests/pug-tests/yield-before-conditional-head.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/yield-before-conditional-head.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/yield-before-conditional-head.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/yield-before-conditional-head.pug -------------------------------------------------------------------------------- /tests/pug-tests/yield-before-conditional.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/yield-before-conditional.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/yield-before-conditional.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/yield-before-conditional.pug -------------------------------------------------------------------------------- /tests/pug-tests/yield-head.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/yield-head.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/yield-head.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/yield-head.pug -------------------------------------------------------------------------------- /tests/pug-tests/yield-title-head.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/yield-title-head.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/yield-title-head.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/yield-title-head.pug -------------------------------------------------------------------------------- /tests/pug-tests/yield-title.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/yield-title.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/yield-title.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/yield-title.pug -------------------------------------------------------------------------------- /tests/pug-tests/yield.formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/yield.formatted.pug -------------------------------------------------------------------------------- /tests/pug-tests/yield.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/pug-tests/yield.pug -------------------------------------------------------------------------------- /tests/quotes/double-to-single/double-to-single.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/quotes/double-to-single/double-to-single.test.ts -------------------------------------------------------------------------------- /tests/quotes/double-to-single/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/quotes/double-to-single/formatted.pug -------------------------------------------------------------------------------- /tests/quotes/double-to-single/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/quotes/double-to-single/unformatted.pug -------------------------------------------------------------------------------- /tests/quotes/single-to-double/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/quotes/single-to-double/formatted.pug -------------------------------------------------------------------------------- /tests/quotes/single-to-double/single-to-double-quotes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/quotes/single-to-double/single-to-double-quotes.test.ts -------------------------------------------------------------------------------- /tests/quotes/single-to-double/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/quotes/single-to-double/unformatted.pug -------------------------------------------------------------------------------- /tests/slash/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/slash/formatted.pug -------------------------------------------------------------------------------- /tests/slash/slash.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/slash/slash.test.ts -------------------------------------------------------------------------------- /tests/slash/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/slash/unformatted.pug -------------------------------------------------------------------------------- /tests/spaces/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/spaces/formatted.pug -------------------------------------------------------------------------------- /tests/spaces/spaces.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/spaces/spaces.test.ts -------------------------------------------------------------------------------- /tests/spaces/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/spaces/unformatted.pug -------------------------------------------------------------------------------- /tests/syntax-errors/attributes-not-closed.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/syntax-errors/attributes-not-closed.pug -------------------------------------------------------------------------------- /tests/syntax-errors/pipeless-script-tag.pug: -------------------------------------------------------------------------------- 1 | script. 2 | doSomething); 3 | -------------------------------------------------------------------------------- /tests/syntax-errors/scripts-with-non-js-contents.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/syntax-errors/scripts-with-non-js-contents.pug -------------------------------------------------------------------------------- /tests/syntax-errors/syntax-errors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/syntax-errors/syntax-errors.test.ts -------------------------------------------------------------------------------- /tests/text-html/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/text-html/formatted.pug -------------------------------------------------------------------------------- /tests/text-html/text-html.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/text-html/text-html.test.ts -------------------------------------------------------------------------------- /tests/text-html/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/text-html/unformatted.pug -------------------------------------------------------------------------------- /tests/unbuffered-code/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/unbuffered-code/formatted.pug -------------------------------------------------------------------------------- /tests/unbuffered-code/unbuffered-code.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/unbuffered-code/unbuffered-code.test.ts -------------------------------------------------------------------------------- /tests/unbuffered-code/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/unbuffered-code/unformatted.pug -------------------------------------------------------------------------------- /tests/yield/formatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/yield/formatted.pug -------------------------------------------------------------------------------- /tests/yield/unformatted.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/yield/unformatted.pug -------------------------------------------------------------------------------- /tests/yield/yield.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tests/yield/yield.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/tsup.config.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettier/plugin-pug/HEAD/vitest.config.ts --------------------------------------------------------------------------------