Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
prettier-plugin-sql
Advanced tools
An opinionated sql formatter plugin for Prettier
Prettier is an opinionated code formatter. It enforces a consistent style by parsing your code and re-printing, taking various rules into account.
This plugin adds support for a lot of sql files through sql-formatter or node-sql-parser.
This plugin is still under development, its printer just wraps sql-formatter or node-sql-parser's default printer. Of course it should just work, but may not match prettier's format sometimes.
prettier-plugin-sql
is an evergreen module. 🌲 This module requires an LTS Node version (v12.0.0+).
Using npm:
# npm
npm i -D prettier prettier-plugin-sql
# yarn
yarn add -D prettier prettier-plugin-sql
Once installed, Prettier plugins should be automatically recognized by Prettier. To use this plugin, confirm that it's installed and run Prettier using your preferred method. For example:
# npx
npx prettier --write db.sql
# yarn
yarn prettier --write db.sql
interface SqlOptions {
formatter: 'sql-formatter' | 'node-sql-parser' // default `sql-formatter`
// sql-formatter
language:
| 'sql'
| 'mariadb'
| 'mysql'
| 'postgresql'
| 'db2'
| 'plsql'
| 'n1ql'
| 'redshift'
| 'spark'
| 'tsql' // default `sql`
uppercase: boolean // default `false`
linesBetweenQueries: number // default `2`
// node-sql-parser
type: 'table' | 'column' // default `table`
database:
| 'bigquery'
| 'db2'
| 'hive'
| 'mariadb'
| 'mysql'
| 'postgresql'
| 'transactsql'
| 'flinksql' // default `mysql`
}
More details on sql-formatter and node-sql-parser.
Detailed changes for each release are documented in CHANGELOG.md.
FAQs
An opinionated sql formatter plugin for Prettier
The npm package prettier-plugin-sql receives a total of 46,053 weekly downloads. As such, prettier-plugin-sql popularity was classified as popular.
We found that prettier-plugin-sql demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.