Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html

exports[`LSP formatting after config change > config formatting > should handle default-config to specific config in config-semi/test.ts 1`] = `
"--- FILE -----------
config-semi/test.ts
"--- URI -----------
file://<fixture>/config-semi/test.ts
--- BEFORE ---------
const x = 1;

Expand All @@ -16,8 +16,8 @@ const x = 1
`;

exports[`LSP formatting after config change > config formatting > should handle default-config to specific config in config-sort-imports/test.js 1`] = `
"--- FILE -----------
config-sort-imports/test.js
"--- URI -----------
file://<fixture>/config-sort-imports/test.js
--- BEFORE ---------
import { z } from "z";
import { a } from "a";
Expand All @@ -34,8 +34,8 @@ import { z } from "z";
`;

exports[`LSP formatting after config change > config formatting > should handle default-config to specific config in config-sort-tailwindcss/test.tsx 1`] = `
"--- FILE -----------
config-sort-tailwindcss/test.tsx
"--- URI -----------
file://<fixture>/config-sort-tailwindcss/test.tsx
--- BEFORE ---------
const App = () => <div className="p-4 flex m-2">Hello</div>;

Expand All @@ -49,8 +49,8 @@ const App = () => <div className="m-2 flex p-4">Hello</div>;
`;

exports[`LSP formatting after config change > config formatting > should handle default-config to specific config in config-sort-tailwindcss/test.vue 1`] = `
"--- FILE -----------
config-sort-tailwindcss/test.vue
"--- URI -----------
file://<fixture>/config-sort-tailwindcss/test.vue
--- BEFORE ---------
<template>
<div class="p-4 flex m-2">Hello</div>
Expand All @@ -70,8 +70,8 @@ config-sort-tailwindcss/test.vue
`;

exports[`LSP formatting after config change > config formatting > should handle default-config to specific config in config-vue-indent/test.vue 1`] = `
"--- FILE -----------
config-vue-indent/test.vue
"--- URI -----------
file://<fixture>/config-vue-indent/test.vue
--- BEFORE ---------
<script>
const x = 1;
Expand All @@ -91,8 +91,8 @@ const x = 1;
`;

exports[`LSP formatting after config change > config formatting > should handle specific config to default config in config-semi/test.ts 1`] = `
"--- FILE -----------
config-semi/test.ts
"--- URI -----------
file://<fixture>/config-semi/test.ts
--- BEFORE ---------
const x = 1;

Expand All @@ -106,8 +106,8 @@ const x = 1;
`;

exports[`LSP formatting after config change > config formatting > should handle specific config to default config in config-sort-imports/test.js 1`] = `
"--- FILE -----------
config-sort-imports/test.js
"--- URI -----------
file://<fixture>/config-sort-imports/test.js
--- BEFORE ---------
import { z } from "z";
import { a } from "a";
Expand All @@ -124,8 +124,8 @@ import { z } from "z";
`;

exports[`LSP formatting after config change > config formatting > should handle specific config to default config in config-sort-tailwindcss/test.tsx 1`] = `
"--- FILE -----------
config-sort-tailwindcss/test.tsx
"--- URI -----------
file://<fixture>/config-sort-tailwindcss/test.tsx
--- BEFORE ---------
const App = () => <div className="p-4 flex m-2">Hello</div>;

Expand All @@ -139,8 +139,8 @@ const App = () => <div className="m-2 flex p-4">Hello</div>;
`;

exports[`LSP formatting after config change > config formatting > should handle specific config to default config in config-sort-tailwindcss/test.vue 1`] = `
"--- FILE -----------
config-sort-tailwindcss/test.vue
"--- URI -----------
file://<fixture>/config-sort-tailwindcss/test.vue
--- BEFORE ---------
<template>
<div class="p-4 flex m-2">Hello</div>
Expand All @@ -160,8 +160,8 @@ config-sort-tailwindcss/test.vue
`;

exports[`LSP formatting after config change > config formatting > should handle specific config to default config in config-vue-indent/test.vue 1`] = `
"--- FILE -----------
config-vue-indent/test.vue
"--- URI -----------
file://<fixture>/config-vue-indent/test.vue
--- BEFORE ---------
<script>
const x = 1;
Expand Down
Loading
Loading