We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With the new config file formats, how to state the plugins section in JSON or YAML?
#699
In the example of this issue above, and when "transcoding" the file into JSON, the value of dolar-sign can be a string, not a function.
commitlint.config.json should eval the function string hello-world-rule
hello-world-rule
{ "rules": { "hello-world-rule": [ 2, "always" ] }, "plugins": [ { "rules": { "hello-world-rule": "({subject}) => [ subject.includes('hi'), `Your subject should contain hi`]" } } ] }
Throws an error
somerepo/node_modules/@commitlint/cli/lib/cli.js:112 throw err; ^ RangeError: Found invalid rule names: hello-world-rule. Supported rule names are: body-case, body-empty, body-full-stop, body-leading-blank, body-max-length, body-max-line-length, body-min-length, footer-empty, footer-leading-blank, footer-max-length, footer-max-line-length, footer-min-length, header-case, header-full-stop, header-max-length, header-min-length, references-empty, scope-case, scope-empty, scope-enum, scope-max-length, scope-min-length, signed-off-by, subject-case, subject-empty, subject-full-stop, subject-max-length, subject-min-length, subject-exclamation-mark, trailer-exists, type-case, type-empty, type-enum, type-max-length, type-min-length, hello-world-rule at Object.lint [as default] (somerepo/node_modules/@commitlint/lint/lib/lint.js:53:15) at processTicksAndRejections (internal/process/task_queues.js:95:5) at async Promise.all (index 0) at async main (somerepo/node_modules/@commitlint/cli/lib/cli.js:205:21)
eval the function string
Using a config file in a JSON or YAML format which defines a local plugin
commitlint --version
git --version
node --version
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With the new config file formats, how to state the plugins section in JSON or YAML?
#699
In the example of this issue above, and when "transcoding" the file into JSON, the value of dolar-sign can be a string, not a function.
Expected Behavior
commitlint.config.json should eval the function string
hello-world-rule
Current Behavior
Throws an error
Affected packages
Possible Solution
eval the function string
Context
Using a config file in a JSON or YAML format which defines a local plugin
Your Environment
commitlint --version
git --version
node --version
The text was updated successfully, but these errors were encountered: