![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
danger-plugin-kirinus
Advanced tools
Set of Danger rules used to check Kirinus Digital PRs.
Install:
yarn add danger-plugin-kirinus --dev
At a glance:
// dangerfile.js
import kirinus from 'danger-plugin-kirinus';
(async function dangerReport() {
const commitlintConfig = {
severity: 'warn',
};
await kirinus();
})();
To override some default parameters:
// dangerfile.js
import configLernaScopes from '@commitlint/config-lerna-scopes';
import kirinus from 'danger-plugin-kirinus';
(async function dangerReport() {
await kirinus({
branchSize: {
maxCommits: 20,
maxFiles: 200,
severity: 'fail',
},
conventional: {
rules: configLernaScopes.rules,
severity: 'warn',
},
prLint: {
severity: 'message',
scoped: false,
},
jira: {
severity: 'disabled',
},
});
})();
Config | Name | Default | Description |
---|---|---|---|
branchSize | maxCommits | 10 | maximum number of commits |
branchSize | maxLines | 2000 | maximum number of line additions and deletions |
branchSize | maxFiles | 100 | maximum number of changed files |
branchSize | severity | warn | danger event type |
conventional | rules | @commitlint/config-conventional rules | conventional commit rules to lint |
conventional | severity | fail | danger event type |
prLint | minBodyLength | warn | minimum number of characters in the PR body |
prLint | severity | fail | danger event type |
jira | severity | warn | danger event type |
See the GitHub release history.
See CONTRIBUTING.md.
FAQs
Set of Danger rules used to check Kirinus Digital PRs
We found that danger-plugin-kirinus demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.