Common lint rules Camunda licensed OSS projects.
Extend from our [available configurations] in your ESLint config:
import camundaLicensedPlugin from 'eslint-plugin-camunda-licensed';
export default [
...camundaLicensedPlugin.configs.mit
]
We ship with a few blue prints:
mit
: ensures that all source files start with the MIT license headercommercial
: ensures that all source files start with the Camunda commercial license headerapache
: ensures that all source files start with the Apache Version 2.0 license header
Changes to licenses will be released as semantic version bumps.
To automatically add/update configured license headers, run ESLint in auto-fix mode:
eslint --fix
To validate that users add the license headers as required, ensure eslint
is being run as part of your CI pipeline.
MIT