UNPKG

nsql-cli

Version:

CLI tool for executing SuiteQL queries against NetSuite

24 lines (22 loc) 676 B
module.exports = { extends: ['@commitlint/config-conventional'], rules: { 'type-enum': [ 2, 'always', [ 'feat', // New feature 'fix', // Bug fix 'docs', // Documentation changes 'style', // Code style changes (formatting, etc.) 'refactor', // Code refactoring 'perf', // Performance improvements 'test', // Adding or updating tests 'build', // Build system changes 'ci', // CI configuration changes 'chore', // Other changes that don't modify src or test files 'revert', // Revert a previous commit ], ], }, };