Please report issues toSQL Formatter library Github page. This extension and the sql-formatter library share the same issue tracker, as the authors of both are the same and the bugs reported about the VSCode extension are really mostly bugs in the underlying formatter library. Don't worry about this difference though when repor...
VSCode extension to format SQL files. Contribute to sql-formatter-org/sql-formatter-vscode development by creating an account on GitHub.
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库:https://github.com/zeroturnaround/sql-formatter master 克隆/下载 git config --global user.name userName git config --global user.email userEmail 分支10 标签174 chatelaoUpdate README.md - TYPOaa989359天前 ...
来自于 https://github.com/getredash/sql-formatter Star 0 Watch 1README.md SQL Formatter SQL Formatter is a JavaScript library for pretty-printing SQL queries. It started as a port of a PHP Library, but has since considerably diverged. It supports Standard SQL, Couchbase N1QL, IBM DB2 ...
https://github.com/petercaogx69/SQLFormatter/issues Email License What’s New Plugin Versions Unfortunately, delicacy didn’t leave any update notes. May 21, 2025 Version 2025.2-SNAPSHOT Getting Started Install a compatible JetBrains IDE, such as IntelliJ IDEA, CLion, PyCharm, or other IntelliJ...
Package Sidebar Install npm i sql-formatter-cli Repository github.com/osv/sql-formatter-cli Homepage github.com/osv/sql-formatter-cli#readme Weekly Downloads 23 Version 2.3.3 License MIT Unpacked Size 58.3 kB Total Files 6 Last publish 6 years ago Collaborators Try on RunKit Report malware...
port of aPHP Library, but has diverged considerably, and been forked/joined multiple times in the past. The current formatter (@gwax/sql-formatter) forked fromzeroturnaround/sql-formatterwith code consolidated fromkufii/sql-formatter-plusand a number of other forks scattered around GitHub. ...
Version1.3.6LicenseMIT INSTALL Type:ESMDefault Version: No default JS fileset by the package authorso the URL is guessed. You can alwaysbrowse all package filesto use another one. FilesStatisticsBrowse CDN Statistics Requests0 Bandwidth0 Top version -0 /dist/sql-formatter.min.js 216 Failed ...
npm install sql-formatter Usage import sqlFormatter from "sql-formatter"; console.log(sqlFormatter.format("SELECT * FROM table1")); This will output: SELECT * FROM table1 You can also pass in configuration options: sqlFormatter.format("SELECT *", { language: "n1ql", // Defaults to...
importcom.github.sqlformatter.SQLFormatter;publicclassSqlFormatterExample{publicstaticvoidmain(String[]args){StringunformattedSql="SELECT*FROM customers WHERE city='New York' AND age>30 ORDER BY age DESC;";// 使用SQLFormatter进行格式化StringformattedSql=SQLFormatter.format(unformattedSql);// 输出格式化...