mirror of
https://github.com/wagoid/commitlint-github-action.git
synced 2025-11-07 16:06:56 +00:00
The config is based on airbnb shared config, with some rules that work better with the project.
10 lines
247 B
JSON
10 lines
247 B
JSON
{
|
|
"extends": ["airbnb-base", "prettier", "plugin:node/recommended"],
|
|
"plugins": ["prettier"],
|
|
"rules": {
|
|
"prettier/prettier": "error",
|
|
"no-console": "off",
|
|
"no-process-exit": "off",
|
|
"node/no-unpublished-require": "off"
|
|
}
|
|
}
|