In package.json I have this script name with two words lint and fix. How should I make a right name?
There are options:
- lowerCamelCase -
lintFix - UpperCamelCase -
LintFix - snake_case -
lint_fix - kebab-case -
lint-fix - gulp-style with a colon delimiter -
lint:fix - Any another delimiter.
What option is right? And why?