You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@dwp/commitlint-config-base

Package Overview
Dependencies
Maintainers
4
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dwp/commitlint-config-base - npm Package Compare versions

Comparing version

to
4.0.7

26

package.json
{
"name": "@dwp/commitlint-config-base",
"version": "4.0.6",
"version": "4.0.7",
"author": "Adam Moss",

@@ -22,3 +22,3 @@ "license": "ISC",

"engines": {
"node": "14 || 16 || 18"
"node": ">=14 <23"
},

@@ -46,20 +46,20 @@ "files": [

"devDependencies": {
"@commitlint/cli": "17.4.4",
"@commitlint/lint": "17.4.4",
"@commitlint/load": "17.4.4",
"@dwp/eslint-config-base": "6.1.0",
"@dwp/eslint-config-jasmine": "1.1.0",
"@dwp/nyc-config-base": "1.1.0",
"eslint": "8.36.0",
"@commitlint/cli": "17.7.2",
"@commitlint/lint": "17.7.0",
"@commitlint/load": "17.7.2",
"@dwp/eslint-config-base": "6.1.1",
"@dwp/eslint-config-jasmine": "1.1.1",
"@dwp/nyc-config-base": "1.1.1",
"eslint": "8.57.1",
"husky": "8.0.3",
"jasmine": "4.6.0",
"jasmine": "5.1.0",
"jasmine-spec-reporter": "7.0.0",
"lint-staged": "13.2.0",
"lint-staged": "15.4.3",
"nyc": "15.1.0",
"snyk": "1.1121.0"
"snyk": "1.1295.2"
},
"dependencies": {
"@commitlint/config-conventional": "17.4.4",
"conventional-changelog-conventionalcommits": "5.0.0"
"conventional-changelog-conventionalcommits": "6.1.0"
}
}

@@ -5,2 +5,10 @@ module.exports = {

],
ignores: [
(commit) => {
const lines = commit.split('\n');
const signingLines = lines.filter((line) => !line.startsWith('Signed-off-by:'));
const serviceAccountRegex = /@noreply\.dwp\.gitlab.*\.com/g;
return signingLines.some((line) => line.match(serviceAccountRegex));
},
],
parserPreset: {

@@ -7,0 +15,0 @@ parserOpts: {