├── .changeset ├── README.md └── config.json ├── .editorconfig ├── .git-blame-ignore-revs ├── .github ├── ISSUE_TEMPLATE │ ├── ---01-bug-report.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── install │ │ └── action.yml └── workflows │ ├── ci.yml │ ├── congrats.yml │ ├── format.yml │ ├── prerelease.yml │ └── release.yml ├── .gitignore ├── .gitpod.yml ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── biome.json ├── eslint.config.js ├── package.json ├── pnpm-lock.yaml ├── rollup.config.mjs ├── src ├── get-visitor-keys.ts ├── index.ts ├── options.ts └── printer │ ├── elements.ts │ ├── embed.ts │ ├── index.ts │ ├── nodes.ts │ └── utils.ts ├── test ├── fixtures │ ├── basic │ │ ├── basic-html │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── html-class-attribute-with-line-breaks │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── html-class-attribute │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── html-comment │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── html-custom-elements │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── inline-whitespace │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── self-closing │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── simple-text │ │ │ ├── input.astro │ │ │ └── output.astro │ │ └── single-style-element │ │ │ ├── input.astro │ │ │ └── output.astro │ ├── errors │ │ ├── attribute.astro │ │ ├── expression.astro │ │ ├── frontmatter.astro │ │ └── style.astro │ ├── markdown │ │ └── embedded-in-markdown │ │ │ ├── input.md │ │ │ └── output.md │ ├── options │ │ ├── option-arrow-parens-always │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-arrow-parens-avoid │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-astro-allow-shorthand-false │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-astro-allow-shorthand-true │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-astro-allow-skip-frontmatter-true │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-astro-sort-order-markup-styles │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-astro-sort-order-styles-markup │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-bracket-same-line-false │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-bracket-same-line-html-true-whitespace-sensitivity-ignore │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-bracket-same-line-true │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-bracket-spacing-false │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-bracket-spacing-true │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-html-whitespace-sensitivity-css │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-html-whitespace-sensitivity-ignore-component │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-html-whitespace-sensitivity-ignore │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-html-whitespace-sensitivity-strict │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-jsx-single-quote-false │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-jsx-single-quote-true │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-print-width │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-prose-wrap-always │ │ │ ├── input.md │ │ │ ├── options.json │ │ │ └── output.md │ │ ├── option-prose-wrap-never │ │ │ ├── input.md │ │ │ ├── options.json │ │ │ └── output.md │ │ ├── option-prose-wrap-preserve │ │ │ ├── input.md │ │ │ ├── options.json │ │ │ └── output.md │ │ ├── option-quote-props-as-needed │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-quote-props-consistent │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-quote-props-preserve │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-semicolon-false │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-semicolon-true │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-single-quote-false │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-single-quote-true │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-tab-width │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-trailing-comma-es5 │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-trailing-comma-none │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-use-tabs-false │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── option-use-tabs-true │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── single-attribute-per-line-false │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ └── single-attribute-per-line-true │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ ├── other │ │ ├── attribute-with-embedded-expr │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── autocloses-open-tags │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── binary-expression │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── clean-self-closing │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── directive │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── doctype-with-embedded-expr │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── doctype-with-extra-attributes │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── embedded-expr-options │ │ │ ├── custom-plugin.js │ │ │ ├── input.astro │ │ │ ├── options.js │ │ │ └── output.astro │ │ ├── embedded-expr │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── expr-and-html-comment │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── expression-in-inline-tag │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── expression-multiple-roots-stress │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── expression-multiple-roots │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── expression-with-inline-comments │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── format-with-cursor-position │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── fragment │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── frontmatter │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── hugging │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── ignore-self-close │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── jsx-comments │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── nested-comment │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── non-jsx-compatible-characters │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── preserve-tag-case │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── prettier-ignore-html │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── prettier-ignore-js │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── script-types │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── shorthand-in-expression │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── slots │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── spread-attributes │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── spread-operator │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── typescript-expression │ │ │ ├── input.astro │ │ │ └── output.astro │ │ ├── unclosed-tag │ │ │ ├── input.astro │ │ │ └── output.astro │ │ └── with-script │ │ │ ├── input.astro │ │ │ └── output.astro │ ├── return │ │ ├── return-arrow-parens-avoid │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── return-basic │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── return-bracket-spacing-false │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── return-semicolon-false │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── return-single-quote-true │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ ├── return-trailing-comma-all │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ │ └── return-trailing-comma-none │ │ │ ├── input.astro │ │ │ ├── options.json │ │ │ └── output.astro │ └── styles │ │ ├── format-nested-sass-style-tag-content │ │ ├── input.astro │ │ └── output.astro │ │ ├── format-nested-style-tag-content │ │ ├── input.astro │ │ └── output.astro │ │ ├── style-tag-attributes │ │ ├── input.astro │ │ └── output.astro │ │ ├── with-indented-sass │ │ ├── input.astro │ │ └── output.astro │ │ ├── with-less │ │ ├── input.astro │ │ └── output.astro │ │ ├── with-sass │ │ ├── input.astro │ │ └── output.astro │ │ ├── with-scss │ │ ├── input.astro │ │ └── output.astro │ │ ├── with-styles-and-body-tag-complex │ │ ├── input.astro │ │ └── output.astro │ │ ├── with-styles-and-body-tag │ │ ├── input.astro │ │ └── output.astro │ │ ├── with-styles │ │ ├── input.astro │ │ └── output.astro │ │ └── with-unknown │ │ ├── input.astro │ │ └── output.astro ├── test-utils.ts └── tests │ ├── basic.test.ts │ ├── errors.test.ts │ ├── markdown.test.ts │ ├── options.test.ts │ ├── other.test.ts │ ├── return.test.ts │ └── styles.test.ts ├── tsconfig.eslint.json ├── tsconfig.json └── vitest.config.ts /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---01-bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/.github/ISSUE_TEMPLATE/---01-bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/install/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/.github/actions/install/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/congrats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/.github/workflows/congrats.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/prerelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/.github/workflows/prerelease.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DS_Store 4 | *.log 5 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/biome.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /src/get-visitor-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/src/get-visitor-keys.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/src/options.ts -------------------------------------------------------------------------------- /src/printer/elements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/src/printer/elements.ts -------------------------------------------------------------------------------- /src/printer/embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/src/printer/embed.ts -------------------------------------------------------------------------------- /src/printer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/src/printer/index.ts -------------------------------------------------------------------------------- /src/printer/nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/src/printer/nodes.ts -------------------------------------------------------------------------------- /src/printer/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/src/printer/utils.ts -------------------------------------------------------------------------------- /test/fixtures/basic/basic-html/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/basic/basic-html/input.astro -------------------------------------------------------------------------------- /test/fixtures/basic/basic-html/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/basic/basic-html/output.astro -------------------------------------------------------------------------------- /test/fixtures/basic/html-class-attribute-with-line-breaks/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/basic/html-class-attribute-with-line-breaks/input.astro -------------------------------------------------------------------------------- /test/fixtures/basic/html-class-attribute-with-line-breaks/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/basic/html-class-attribute-with-line-breaks/output.astro -------------------------------------------------------------------------------- /test/fixtures/basic/html-class-attribute/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/basic/html-class-attribute/input.astro -------------------------------------------------------------------------------- /test/fixtures/basic/html-class-attribute/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/basic/html-class-attribute/output.astro -------------------------------------------------------------------------------- /test/fixtures/basic/html-comment/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/basic/html-comment/input.astro -------------------------------------------------------------------------------- /test/fixtures/basic/html-comment/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/basic/html-comment/output.astro -------------------------------------------------------------------------------- /test/fixtures/basic/html-custom-elements/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/basic/html-custom-elements/input.astro -------------------------------------------------------------------------------- /test/fixtures/basic/html-custom-elements/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/basic/html-custom-elements/output.astro -------------------------------------------------------------------------------- /test/fixtures/basic/inline-whitespace/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/basic/inline-whitespace/input.astro -------------------------------------------------------------------------------- /test/fixtures/basic/inline-whitespace/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/basic/inline-whitespace/output.astro -------------------------------------------------------------------------------- /test/fixtures/basic/self-closing/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/basic/self-closing/input.astro -------------------------------------------------------------------------------- /test/fixtures/basic/self-closing/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/basic/self-closing/output.astro -------------------------------------------------------------------------------- /test/fixtures/basic/simple-text/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/basic/simple-text/input.astro -------------------------------------------------------------------------------- /test/fixtures/basic/simple-text/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/basic/simple-text/output.astro -------------------------------------------------------------------------------- /test/fixtures/basic/single-style-element/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/basic/single-style-element/input.astro -------------------------------------------------------------------------------- /test/fixtures/basic/single-style-element/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/basic/single-style-element/output.astro -------------------------------------------------------------------------------- /test/fixtures/errors/attribute.astro: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /test/fixtures/errors/expression.astro: -------------------------------------------------------------------------------- 1 | { 2 | [.] 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/errors/frontmatter.astro: -------------------------------------------------------------------------------- 1 | --- 2 | const hello = 3 | --- 4 | -------------------------------------------------------------------------------- /test/fixtures/errors/style.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/errors/style.astro -------------------------------------------------------------------------------- /test/fixtures/markdown/embedded-in-markdown/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/markdown/embedded-in-markdown/input.md -------------------------------------------------------------------------------- /test/fixtures/markdown/embedded-in-markdown/output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/markdown/embedded-in-markdown/output.md -------------------------------------------------------------------------------- /test/fixtures/options/option-arrow-parens-always/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-arrow-parens-always/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-arrow-parens-always/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "arrowParens": "always" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-arrow-parens-always/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-arrow-parens-always/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-arrow-parens-avoid/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-arrow-parens-avoid/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-arrow-parens-avoid/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "arrowParens": "avoid" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-arrow-parens-avoid/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-arrow-parens-avoid/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-astro-allow-shorthand-false/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-astro-allow-shorthand-false/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-astro-allow-shorthand-false/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "astroAllowShorthand": false 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-astro-allow-shorthand-false/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-astro-allow-shorthand-false/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-astro-allow-shorthand-true/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-astro-allow-shorthand-true/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-astro-allow-shorthand-true/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "astroAllowShorthand": true 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-astro-allow-shorthand-true/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-astro-allow-shorthand-true/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-astro-allow-skip-frontmatter-true/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-astro-allow-skip-frontmatter-true/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-astro-allow-skip-frontmatter-true/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "astroAllowSkipFrontmatter": true 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-astro-allow-skip-frontmatter-true/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-astro-allow-skip-frontmatter-true/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-astro-sort-order-markup-styles/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-astro-sort-order-markup-styles/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-astro-sort-order-markup-styles/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "astroSortOrder": "markup | styles" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-astro-sort-order-markup-styles/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-astro-sort-order-markup-styles/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-astro-sort-order-styles-markup/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-astro-sort-order-styles-markup/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-astro-sort-order-styles-markup/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "astroSortOrder": "styles | markup" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-astro-sort-order-styles-markup/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-astro-sort-order-styles-markup/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-bracket-same-line-false/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-bracket-same-line-false/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-bracket-same-line-false/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "bracketSameLine": false 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-bracket-same-line-false/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-bracket-same-line-false/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-bracket-same-line-html-true-whitespace-sensitivity-ignore/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-bracket-same-line-html-true-whitespace-sensitivity-ignore/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-bracket-same-line-html-true-whitespace-sensitivity-ignore/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-bracket-same-line-html-true-whitespace-sensitivity-ignore/options.json -------------------------------------------------------------------------------- /test/fixtures/options/option-bracket-same-line-html-true-whitespace-sensitivity-ignore/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-bracket-same-line-html-true-whitespace-sensitivity-ignore/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-bracket-same-line-true/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-bracket-same-line-true/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-bracket-same-line-true/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "bracketSameLine": true 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-bracket-same-line-true/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-bracket-same-line-true/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-bracket-spacing-false/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-bracket-spacing-false/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-bracket-spacing-false/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "bracketSpacing": false 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-bracket-spacing-false/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-bracket-spacing-false/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-bracket-spacing-true/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-bracket-spacing-true/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-bracket-spacing-true/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "bracketSpacing": true 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-bracket-spacing-true/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-bracket-spacing-true/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-html-whitespace-sensitivity-css/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-html-whitespace-sensitivity-css/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-html-whitespace-sensitivity-css/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "htmlWhitespaceSensitivity": "css" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-html-whitespace-sensitivity-css/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-html-whitespace-sensitivity-css/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-html-whitespace-sensitivity-ignore-component/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-html-whitespace-sensitivity-ignore-component/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-html-whitespace-sensitivity-ignore-component/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-html-whitespace-sensitivity-ignore-component/options.json -------------------------------------------------------------------------------- /test/fixtures/options/option-html-whitespace-sensitivity-ignore-component/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-html-whitespace-sensitivity-ignore-component/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-html-whitespace-sensitivity-ignore/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-html-whitespace-sensitivity-ignore/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-html-whitespace-sensitivity-ignore/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "htmlWhitespaceSensitivity": "ignore" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-html-whitespace-sensitivity-ignore/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-html-whitespace-sensitivity-ignore/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-html-whitespace-sensitivity-strict/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-html-whitespace-sensitivity-strict/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-html-whitespace-sensitivity-strict/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "htmlWhitespaceSensitivity": "strict" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-html-whitespace-sensitivity-strict/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-html-whitespace-sensitivity-strict/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-jsx-single-quote-false/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-jsx-single-quote-false/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-jsx-single-quote-false/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-jsx-single-quote-false/options.json -------------------------------------------------------------------------------- /test/fixtures/options/option-jsx-single-quote-false/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-jsx-single-quote-false/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-jsx-single-quote-true/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-jsx-single-quote-true/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-jsx-single-quote-true/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "jsxSingleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-jsx-single-quote-true/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-jsx-single-quote-true/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-print-width/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-print-width/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-print-width/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 100 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-print-width/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-print-width/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-prose-wrap-always/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-prose-wrap-always/input.md -------------------------------------------------------------------------------- /test/fixtures/options/option-prose-wrap-always/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-prose-wrap-always/options.json -------------------------------------------------------------------------------- /test/fixtures/options/option-prose-wrap-always/output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-prose-wrap-always/output.md -------------------------------------------------------------------------------- /test/fixtures/options/option-prose-wrap-never/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-prose-wrap-never/input.md -------------------------------------------------------------------------------- /test/fixtures/options/option-prose-wrap-never/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-prose-wrap-never/options.json -------------------------------------------------------------------------------- /test/fixtures/options/option-prose-wrap-never/output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-prose-wrap-never/output.md -------------------------------------------------------------------------------- /test/fixtures/options/option-prose-wrap-preserve/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-prose-wrap-preserve/input.md -------------------------------------------------------------------------------- /test/fixtures/options/option-prose-wrap-preserve/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-prose-wrap-preserve/options.json -------------------------------------------------------------------------------- /test/fixtures/options/option-prose-wrap-preserve/output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-prose-wrap-preserve/output.md -------------------------------------------------------------------------------- /test/fixtures/options/option-quote-props-as-needed/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-quote-props-as-needed/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-quote-props-as-needed/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "quoteProps": "as-needed" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-quote-props-as-needed/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-quote-props-as-needed/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-quote-props-consistent/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-quote-props-consistent/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-quote-props-consistent/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "quoteProps": "consistent" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-quote-props-consistent/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-quote-props-consistent/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-quote-props-preserve/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-quote-props-preserve/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-quote-props-preserve/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "quoteProps": "preserve" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-quote-props-preserve/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-quote-props-preserve/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-semicolon-false/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-semicolon-false/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-semicolon-false/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "semi": false 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-semicolon-false/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-semicolon-false/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-semicolon-true/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-semicolon-true/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-semicolon-true/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "semi": true 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-semicolon-true/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-semicolon-true/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-single-quote-false/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-single-quote-false/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-single-quote-false/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": false 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-single-quote-false/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-single-quote-false/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-single-quote-true/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-single-quote-true/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-single-quote-true/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-single-quote-true/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-single-quote-true/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-tab-width/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-tab-width/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-tab-width/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 3 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-tab-width/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-tab-width/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-trailing-comma-es5/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-trailing-comma-es5/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-trailing-comma-es5/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "es5" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-trailing-comma-es5/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-trailing-comma-es5/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-trailing-comma-none/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-trailing-comma-none/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-trailing-comma-none/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "none" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-trailing-comma-none/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-trailing-comma-none/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-use-tabs-false/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-use-tabs-false/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-use-tabs-false/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": false 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-use-tabs-false/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-use-tabs-false/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-use-tabs-true/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-use-tabs-true/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/option-use-tabs-true/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": true 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/option-use-tabs-true/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/option-use-tabs-true/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/single-attribute-per-line-false/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/single-attribute-per-line-false/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/single-attribute-per-line-false/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "singleAttributePerLine": false 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/single-attribute-per-line-false/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/single-attribute-per-line-false/output.astro -------------------------------------------------------------------------------- /test/fixtures/options/single-attribute-per-line-true/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/single-attribute-per-line-true/input.astro -------------------------------------------------------------------------------- /test/fixtures/options/single-attribute-per-line-true/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "singleAttributePerLine": true 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/options/single-attribute-per-line-true/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/options/single-attribute-per-line-true/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/attribute-with-embedded-expr/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/attribute-with-embedded-expr/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/attribute-with-embedded-expr/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/attribute-with-embedded-expr/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/autocloses-open-tags/input.astro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/other/autocloses-open-tags/output.astro: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/fixtures/other/binary-expression/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/binary-expression/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/binary-expression/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/binary-expression/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/clean-self-closing/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/clean-self-closing/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/clean-self-closing/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/clean-self-closing/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/directive/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/directive/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/directive/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/directive/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/doctype-with-embedded-expr/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/doctype-with-embedded-expr/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/doctype-with-embedded-expr/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/doctype-with-embedded-expr/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/doctype-with-extra-attributes/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/doctype-with-extra-attributes/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/doctype-with-extra-attributes/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/doctype-with-extra-attributes/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/embedded-expr-options/custom-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/embedded-expr-options/custom-plugin.js -------------------------------------------------------------------------------- /test/fixtures/other/embedded-expr-options/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/embedded-expr-options/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/embedded-expr-options/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/embedded-expr-options/options.js -------------------------------------------------------------------------------- /test/fixtures/other/embedded-expr-options/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/embedded-expr-options/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/embedded-expr/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/embedded-expr/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/embedded-expr/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/embedded-expr/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/expr-and-html-comment/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/expr-and-html-comment/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/expr-and-html-comment/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/expr-and-html-comment/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/expression-in-inline-tag/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/expression-in-inline-tag/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/expression-in-inline-tag/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/expression-in-inline-tag/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/expression-multiple-roots-stress/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/expression-multiple-roots-stress/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/expression-multiple-roots-stress/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/expression-multiple-roots-stress/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/expression-multiple-roots/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/expression-multiple-roots/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/expression-multiple-roots/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/expression-multiple-roots/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/expression-with-inline-comments/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/expression-with-inline-comments/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/expression-with-inline-comments/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/expression-with-inline-comments/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/format-with-cursor-position/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/format-with-cursor-position/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/format-with-cursor-position/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/format-with-cursor-position/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/fragment/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/fragment/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/fragment/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/fragment/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/frontmatter/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/frontmatter/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/frontmatter/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/frontmatter/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/hugging/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/hugging/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/hugging/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/hugging/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/ignore-self-close/input.astro: -------------------------------------------------------------------------------- 1 | 2 |
  • 3 | -------------------------------------------------------------------------------- /test/fixtures/other/ignore-self-close/output.astro: -------------------------------------------------------------------------------- 1 | 2 |
  • 3 | -------------------------------------------------------------------------------- /test/fixtures/other/jsx-comments/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/jsx-comments/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/jsx-comments/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/jsx-comments/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/nested-comment/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/nested-comment/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/nested-comment/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/nested-comment/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/non-jsx-compatible-characters/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/non-jsx-compatible-characters/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/non-jsx-compatible-characters/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/non-jsx-compatible-characters/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/preserve-tag-case/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/preserve-tag-case/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/preserve-tag-case/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/preserve-tag-case/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/prettier-ignore-html/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/prettier-ignore-html/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/prettier-ignore-html/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/prettier-ignore-html/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/prettier-ignore-js/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/prettier-ignore-js/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/prettier-ignore-js/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/prettier-ignore-js/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/script-types/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/script-types/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/script-types/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/script-types/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/shorthand-in-expression/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/shorthand-in-expression/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/shorthand-in-expression/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/shorthand-in-expression/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/slots/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/slots/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/slots/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/slots/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/spread-attributes/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/spread-attributes/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/spread-attributes/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/spread-attributes/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/spread-operator/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/spread-operator/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/spread-operator/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/spread-operator/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/typescript-expression/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/typescript-expression/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/typescript-expression/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/typescript-expression/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/unclosed-tag/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/unclosed-tag/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/unclosed-tag/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/unclosed-tag/output.astro -------------------------------------------------------------------------------- /test/fixtures/other/with-script/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/with-script/input.astro -------------------------------------------------------------------------------- /test/fixtures/other/with-script/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/other/with-script/output.astro -------------------------------------------------------------------------------- /test/fixtures/return/return-arrow-parens-avoid/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-arrow-parens-avoid/input.astro -------------------------------------------------------------------------------- /test/fixtures/return/return-arrow-parens-avoid/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-arrow-parens-avoid/options.json -------------------------------------------------------------------------------- /test/fixtures/return/return-arrow-parens-avoid/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-arrow-parens-avoid/output.astro -------------------------------------------------------------------------------- /test/fixtures/return/return-basic/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-basic/input.astro -------------------------------------------------------------------------------- /test/fixtures/return/return-basic/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-basic/options.json -------------------------------------------------------------------------------- /test/fixtures/return/return-basic/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-basic/output.astro -------------------------------------------------------------------------------- /test/fixtures/return/return-bracket-spacing-false/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-bracket-spacing-false/input.astro -------------------------------------------------------------------------------- /test/fixtures/return/return-bracket-spacing-false/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-bracket-spacing-false/options.json -------------------------------------------------------------------------------- /test/fixtures/return/return-bracket-spacing-false/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-bracket-spacing-false/output.astro -------------------------------------------------------------------------------- /test/fixtures/return/return-semicolon-false/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-semicolon-false/input.astro -------------------------------------------------------------------------------- /test/fixtures/return/return-semicolon-false/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-semicolon-false/options.json -------------------------------------------------------------------------------- /test/fixtures/return/return-semicolon-false/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-semicolon-false/output.astro -------------------------------------------------------------------------------- /test/fixtures/return/return-single-quote-true/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-single-quote-true/input.astro -------------------------------------------------------------------------------- /test/fixtures/return/return-single-quote-true/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-single-quote-true/options.json -------------------------------------------------------------------------------- /test/fixtures/return/return-single-quote-true/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-single-quote-true/output.astro -------------------------------------------------------------------------------- /test/fixtures/return/return-trailing-comma-all/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-trailing-comma-all/input.astro -------------------------------------------------------------------------------- /test/fixtures/return/return-trailing-comma-all/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-trailing-comma-all/options.json -------------------------------------------------------------------------------- /test/fixtures/return/return-trailing-comma-all/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-trailing-comma-all/output.astro -------------------------------------------------------------------------------- /test/fixtures/return/return-trailing-comma-none/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-trailing-comma-none/input.astro -------------------------------------------------------------------------------- /test/fixtures/return/return-trailing-comma-none/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-trailing-comma-none/options.json -------------------------------------------------------------------------------- /test/fixtures/return/return-trailing-comma-none/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/return/return-trailing-comma-none/output.astro -------------------------------------------------------------------------------- /test/fixtures/styles/format-nested-sass-style-tag-content/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/format-nested-sass-style-tag-content/input.astro -------------------------------------------------------------------------------- /test/fixtures/styles/format-nested-sass-style-tag-content/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/format-nested-sass-style-tag-content/output.astro -------------------------------------------------------------------------------- /test/fixtures/styles/format-nested-style-tag-content/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/format-nested-style-tag-content/input.astro -------------------------------------------------------------------------------- /test/fixtures/styles/format-nested-style-tag-content/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/format-nested-style-tag-content/output.astro -------------------------------------------------------------------------------- /test/fixtures/styles/style-tag-attributes/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/style-tag-attributes/input.astro -------------------------------------------------------------------------------- /test/fixtures/styles/style-tag-attributes/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/style-tag-attributes/output.astro -------------------------------------------------------------------------------- /test/fixtures/styles/with-indented-sass/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/with-indented-sass/input.astro -------------------------------------------------------------------------------- /test/fixtures/styles/with-indented-sass/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/with-indented-sass/output.astro -------------------------------------------------------------------------------- /test/fixtures/styles/with-less/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/with-less/input.astro -------------------------------------------------------------------------------- /test/fixtures/styles/with-less/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/with-less/output.astro -------------------------------------------------------------------------------- /test/fixtures/styles/with-sass/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/with-sass/input.astro -------------------------------------------------------------------------------- /test/fixtures/styles/with-sass/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/with-sass/output.astro -------------------------------------------------------------------------------- /test/fixtures/styles/with-scss/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/with-scss/input.astro -------------------------------------------------------------------------------- /test/fixtures/styles/with-scss/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/with-scss/output.astro -------------------------------------------------------------------------------- /test/fixtures/styles/with-styles-and-body-tag-complex/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/with-styles-and-body-tag-complex/input.astro -------------------------------------------------------------------------------- /test/fixtures/styles/with-styles-and-body-tag-complex/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/with-styles-and-body-tag-complex/output.astro -------------------------------------------------------------------------------- /test/fixtures/styles/with-styles-and-body-tag/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/with-styles-and-body-tag/input.astro -------------------------------------------------------------------------------- /test/fixtures/styles/with-styles-and-body-tag/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/with-styles-and-body-tag/output.astro -------------------------------------------------------------------------------- /test/fixtures/styles/with-styles/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/with-styles/input.astro -------------------------------------------------------------------------------- /test/fixtures/styles/with-styles/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/with-styles/output.astro -------------------------------------------------------------------------------- /test/fixtures/styles/with-unknown/input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/with-unknown/input.astro -------------------------------------------------------------------------------- /test/fixtures/styles/with-unknown/output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/fixtures/styles/with-unknown/output.astro -------------------------------------------------------------------------------- /test/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/test-utils.ts -------------------------------------------------------------------------------- /test/tests/basic.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/tests/basic.test.ts -------------------------------------------------------------------------------- /test/tests/errors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/tests/errors.test.ts -------------------------------------------------------------------------------- /test/tests/markdown.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/tests/markdown.test.ts -------------------------------------------------------------------------------- /test/tests/options.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/tests/options.test.ts -------------------------------------------------------------------------------- /test/tests/other.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/tests/other.test.ts -------------------------------------------------------------------------------- /test/tests/return.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/tests/return.test.ts -------------------------------------------------------------------------------- /test/tests/styles.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/test/tests/styles.test.ts -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withastro/prettier-plugin-astro/HEAD/vitest.config.ts --------------------------------------------------------------------------------