Socket
Socket
Sign inDemoInstall

@capriza/eslint-plugin-safe-sql

Package Overview
Dependencies
Maintainers
14
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@capriza/eslint-plugin-safe-sql

ESLint plugin with rule for using the `SQL` template tag on raw SQL queries


Version published
Maintainers
14
Created
Source

eslint-plugin-safe-sql

ESLint plugin to enforce the use of the SQL template tag from the library https://github.com/capriza/safe-sql. The SQL template tag from safe-sql transforms the sql query in a template to a safe sql query with bound parameters for use with Sequelize.

Installation

$ npm install --save-dev @capriza/eslint-plugin-safe-sql

Usage

Add the following to your .eslint.json file:

"plugins": ["@capriza/safe-sql"],
"rules": {"@capriza/safe-sql/no-unsafe-sql": "error"}

no-unsafe-sql rule

Forbids the use of raw SQL in string literals or untagged templates, requiring the use of the SQL template tag.

Examples
const SQL = require("safe-sql");

const table = "users";
var query = "SELECT * FROM " + table; // this will generate eslint error
sequelize.query(`SELECT * FROM ${table}`); // this will generate eslint error
sequelize.query(SQL`SELECT * FROM ${table}`); // this will NOT generate eslint error

FAQs

Package last updated on 11 Jun 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc