From a8a0ff495b4984928e69f317616196fc21808f2f Mon Sep 17 00:00:00 2001 From: "John L. Armstrong IV" <20903247+jlarmstrongiv@users.noreply.github.com> Date: Thu, 9 Nov 2023 00:52:14 -0700 Subject: [PATCH] fix: enable SQLite which is actually supported (#299) Co-authored-by: JounQin --- .changeset/yellow-colts-check.md | 5 +++++ packages/sql/src/index.ts | 4 ++++ 2 files changed, 9 insertions(+) create mode 100644 .changeset/yellow-colts-check.md diff --git a/.changeset/yellow-colts-check.md b/.changeset/yellow-colts-check.md new file mode 100644 index 00000000..06fb76a7 --- /dev/null +++ b/.changeset/yellow-colts-check.md @@ -0,0 +1,5 @@ +--- +"prettier-plugin-sql": patch +--- + +fix: enable SQLite which is actually supported diff --git a/packages/sql/src/index.ts b/packages/sql/src/index.ts index fc7d1c05..7ff741ad 100644 --- a/packages/sql/src/index.ts +++ b/packages/sql/src/index.ts @@ -134,6 +134,10 @@ const SqlPlugin: Plugin = { value: 'spark', description: 'Spark: https://spark.apache.org', }, + { + value: 'sqlite', + description: 'SQLite: https://www.sqlite.org', + }, { value: 'trino', description: 'Trino: https://trino.io',