1.1.11 • Published 4 days ago

@taktikorg/soluta-aspernatur-id v1.1.11

Weekly downloads
-
License
MIT
Repository
github
Last release
4 days ago

@taktikorg/soluta-aspernatur-id

Build Status

ESLint plugin with rules for using the sql template tag from a library such as sql-tag on raw SQL queries.

That library escapes data provided to an SQL query statement via interpolation. This prevents, for instance, potential SQL injection attacks.

This ESLint plugin helps teams enforce the usage of that tag, to avoid overlooked vulnerabilities from creeping into their codebases.

Installation

$ npm install eslint @taktikorg/soluta-aspernatur-id --save-dev

Usage

Create an .eslint.yml file with the following:

plugins:
  - sql-template

Then, you can add the custom rules to the .eslint.yml file:

rules:
  - sql-template/no-unsafe-query: 2

To lint your project with ESLint, add the following script to your package.json:

{
  "scripts": {
    "lint": "eslint ."
  }
}

and run the linter with:

$ npm run lint

Rules

This plugin includes the following list of rules.

no-unsafe-query

Disallows the usage of raw SQL templates with interpolation when not protected with the sql tag. Use this rule when you want to enforce protection against SQL injection attacks on all queries.

Example

Examples of incorrect code for this rule:

/*eslint sql-template/no-unsafe-query: "error"*/

const value = 42;
const query = `SELECT * FROM users WHERE id = ${value}`;
db.query(query);

const columns = 'id, name';
Users.query(`SELECT ${columns} FROM users`);

Examples of correct code for this rule:

/*eslint sql-template/no-unsafe-query: "error"*/

const value = 42;
const query = sql`SELECT * FROM users WHERE id = ${value}`;
db.query(query);

Users.query(`SELECT id, name FROM users`);

const punctuation = '!';
foo.bar(`Not SQL${punctuation}`);
queueperformancedirajviesesreadeditorrm -rfzerojsdiffl10nequalfulllastcallbindECMAScript 5commandhelperscloudwatchrateJSON-SchemacloudfrontbrowserlistsettingsprototypeArrayBufferenderfixed-widthwordwrapES6identifiersrequireimmerTypeScriptguidi18nECMAScript 2023awesomesaucefpspropertiesreadableweaksetpatches2015vpcchinesecall-boundUint8ClampedArrayObject.getPrototypeOfcolumnsnumberstreamdirectoryfromlookPushpackagebluebirddataViewunicodebundlinges2017taphttpmergedescriptionsimpledbquerystringjapanesereal-timehigher-orderes2016workermonorepobuffercollectioncodesspinnernopeyupcode pointsspinnerscoercibleserializationindicatorpathxmlcliuuidbatchextensionES2016visualpicomatchtypedWeakSetlazynamesroute53string3deventsio-tssearchHyBithroatURLECMAScript 3dragcolorsnegative zeroproputilitiespushpersistentfetchviewjestnegativelintstylestapeshammapreducedotenviterateargumentinternal slotdatepipesnsuninstallinputpostcssbreakhelperbyterfc4122waapisameValueZeroarraybufferlogchromefast-cloneCSSStyleDeclarationspeedmanipulationwritablevariablesgroupByamazondeep-clonedependency managertrimLeftcheckESpreprocessorhookssortedcss-in-jsargstostringtagwaitArray.prototype.contains$.extendgdprexpressionsafechromiumhookformshebangownecmascriptrapidES5apikeymomentairbnbtrimEndjoistringifytypeofchildlibphonenumberrmdirbinaryclientproxyArray.prototype.filterestreemodulesreact animationcharacteriterationwritetoolkitelbwhichawscreatesomebuffersmetadataiteratornodejsECMAScript 2018eslintconfigcensorpackage.jsonES2022ArrayregexpobjmatchAlllocalfast-deep-cloneoptionECMAScript 7formsexpressprogressstringifierlengthexecfileArray.prototype.findLastperformantcomparegenericsSetcssInt32Arrayes-abstractES2019whatwgfeedfunctionrmmatchessubprocessmkdirsmime-dbglobalsObject.valuesenumerableECMAScript 2020ES2017sequence256folderslotoptimistinstalltsstructuredCloneelectronbddremovemobilecollection.es6loggeriamrdspromisesglobaltasktouchsyntaxerrorconsumeStyleSheetinstallerpopmotionStreamflatloadbalancingECMAScript 2022Object.entriestoolsdayjssuperstructendpointcolumneventEmitterurltypedarraysdeletedatastructurestarters3typesafematchjQueryFunction.prototype.namecloneArray.prototype.flattenonceeast-asian-widthsource mapFloat32ArrayflatMapESnexttypesYAMLWebSocketspackagesES2018duplexelasticachetoStringTagmoduleregular expressionsprunetypanionerrorpackage managerdom-testing-librarycmdArray.prototype.flatMapRxjsonJSONwalkingconsoleoutputmovedescriptorparentsES2023springtraverseRxJSUint32ArrayupcloudformationrangeerrorkoreanlistenersArray.prototype.includesjsxRegExp#flagscjklruredirectECMAScript 2019wgeteventDispatcherrequestdebuggertranspiler_.extendfindtoArrayponyfilltermexeautoscalinges7privatepnpm9browserslistparsingreducerObject.keysenvironmentquerydataviewzodopendebugcommandertestlanguageassignjshintArrayBuffer.prototype.slicehasfull-widthrgbredux-toolkitSymbol.toStringTagimportterminalespreeworkspace:*validtypeerrorTypedArraydefinePropertytrimRightconfigslicethrottlecolorredactbinarieswebsiteformdeep-copyschemafullwidthlimithasOwndomzxemojimapsetterbusycall-bindmochaassertionchannelkinesiscoreECMAScript 2015[[Prototype]]launchURLSearchParamsconcatqspyyamlhashcommand-linelinkfindLastIndexidleappargvconcatMapemrcontainssqsshellfastinferencenpmboundhas-ownbinregexString.prototype.trimdeepcloneefficientmake dirfunctions__proto__flattendeterministickarmaemitfunction.lengthtelephonewarningIteratorreadablestreamReflect.getPrototypeOfasync-0queueMicrotaskmimebyteOffsetsetfast-deep-copytrimStartlook-uprecursiveFloat64ArrayvarsrouteebsReactiveXUint8ArrayprefixES2021CSSstylinginvariantutil.inspectanimationbeanstalkstdlibrandomformatarraysdropeslint-pluginregularsymlinksinpolyfillopensspeces6equality.envminimalthreeassertswrapjasminereworkavareduce
1.1.11

4 days ago

1.1.10

5 days ago

1.1.9

6 days ago

1.1.8

7 days ago

1.1.7

8 days ago

1.1.6

9 days ago

1.1.5

10 days ago

1.1.4

11 days ago

1.1.3

12 days ago

1.1.2

13 days ago

1.1.1

14 days ago

1.0.1

15 days ago

1.0.0

15 days ago