jsinspect-plus
Version:
Detect copy-pasted and structurally similar code. Supports ES2020 standard (and most proposed features), TS and TSX files. Using Babel 8's parser.
30 lines • 861 B
JSON
{
"branches": ["master"],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{ "type": "feat", "scope": null, "breaking": false, "release": "minor" },
{ "type": "feat", "scope": null, "breaking": true, "release": "major" }
],
"parserOpts": {
"noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"],
"headerPattern": "^(\\w*)(\\((.*)\\))?!?: (.*)$",
"breakingHeaderPattern": "^(\\w*)(\\((.*)\\))?!: (.*)$"
}
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": ["package.json", "package-lock.json"],
"message": "${nextRelease.version}"
}
]
]
}