- GitHub, not Github
- TypeScript, not Typescript
- macOS, not MacOS
- VS Code, not Vscode
- ...
Make the case correct, PLEASE!
Make sure you have committed all unsaved works, and then
npx case-police --fix
It will scan all your source files and fix the cases of known names.
Only the word including both uppercase and lowercase will be fixed. (e.g. Github
-> GitHub
; github
and GITHUB
will be left untouched).
We also provide an ESLint plugin that can be used to lint your codebase.
npm i -D eslint-plugin-case-police
// .eslintrc
{
"extends": [
"plugin:case-police/recommended"
]
}
Simply add case-police
(without --fix
) to your workflow and it will exit with a non-zero code for your CI to catch it.
By default it will scan all the text files under the current directory (respects .gitignore
), if you want it to check only specific files, you can pass the file paths of glob patterns to it.
npx case-police "**/*.md" path/to/file.html
Options | Description |
---|---|
[...globs] |
Files or glob to be checked, if not provided, all the text files will be check |
--fix |
Rewrite changes to file |
-d, --dict <path> |
Custom dictionary JSON, will be merged with original dict |
-p, --presets <presets> |
Filter the default presets, comma separated |
--no-default |
Disable the default dictionary |
--disable <rules> |
Disable rules, comma separated |
--ignore <globs> |
Files or globs to be ignore, comma separated |
You can add @case-police-disable
in your file to disable the case check for the particular file, or add @case-police-ignore xxx
to ignore certain words in that file.
For example:
// @case-police-ignore Uri
console.log(something.Uri.path)
actions-case-police. Use the correct letter case in GitHub issues and pull requests
MIT License © 2021 Anthony Fu