feat(new-tool): added an SQL prettifier and formatter

This commit is contained in:
Corentin Thomasset 2022-07-24 14:37:27 +02:00
parent 6cd25a743e
commit d1f95f5b34
No known key found for this signature in database
GPG key ID: DBD997E935996158
7 changed files with 169 additions and 5 deletions

View file

@ -0,0 +1,26 @@
import { Database } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'SQL prettify and format',
path: '/sql-prettify',
description: 'Format and prettify your SQL queries online (it supports various SQL dialects).',
keywords: [
'sql',
'prettify',
'beautify',
'GCP BigQuery',
'IBM DB2',
'Apache Hive',
'MariaDB',
'MySQL',
'Couchbase N1QL',
'Oracle PL/SQL',
'PostgreSQL',
'Amazon Redshift',
'Spark',
'SQL Server Transact-SQL',
],
component: () => import('./sql-prettify.vue'),
icon: Database,
});