├── .envrc ├── .gitignore ├── test-components ├── ScriptSetup.vue ├── EmptyTemplate.vue ├── NoScript.vue ├── NoTemplate.vue ├── NoStyle.vue ├── Vanilla.vue ├── DifferentOrderBlocks.vue ├── LeadingNewlines.vue ├── AttributesOnBlocks.vue ├── CustomIndents.vue ├── ExtraNewlinesBetweenBlocks.vue ├── MultipleStyles.vue └── CustomBlocks.vue ├── CHANGELOG.md ├── package.json ├── flake.nix ├── LICENSE.mit ├── flake.lock ├── README.md ├── index.js ├── test.js └── __snapshots__ └── test.js.snap /.envrc: -------------------------------------------------------------------------------- 1 | use flake . 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | # nix 4 | .direnv 5 | -------------------------------------------------------------------------------- /test-components/ScriptSetup.vue: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /test-components/EmptyTemplate.vue: -------------------------------------------------------------------------------- 1 | 10 | 11 |