diff options
| author | Stefan Kangas | 2023-12-10 14:48:33 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2023-12-10 14:48:33 +0100 |
| commit | bdf7e646f88a6c67b7b578591ee372b0a55d27d3 (patch) | |
| tree | f737d4b04d07dd73a177f52fc19724807724da4d /admin/codespell/README | |
| parent | 2773cf9e013a989df99a689317de941bde2cbf29 (diff) | |
| download | emacs-scratch/codespell.tar.gz emacs-scratch/codespell.zip | |
Add script admin/run-codespell and supporting filesscratch/codespell
* admin/codespell/README:
* admin/codespell/codespell.dictionary:
* admin/codespell/codespell.exclude:
* admin/codespell/codespell.ignore:
* admin/codespell/codespell.rc:
* admin/run-codespell: New files.
Diffstat (limited to 'admin/codespell/README')
| -rw-r--r-- | admin/codespell/README | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/admin/codespell/README b/admin/codespell/README new file mode 100644 index 00000000000..fcc5e3b41d0 --- /dev/null +++ b/admin/codespell/README | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | This directory contains supporting files for running codespell. | ||
| 2 | See the ./admin/run-codespell script. | ||
| 3 | |||
| 4 | codespell.dictionary | ||
| 5 | |||
| 6 | This file contains additional, Emacs-specific corrections. When | ||
| 7 | fixing typos in Emacs, consider adding them to this file. | ||
| 8 | |||
| 9 | codespell.exclude | ||
| 10 | |||
| 11 | This file contains lines that are correct and should be ignored by | ||
| 12 | codespell. Add any false positives to this file. | ||
| 13 | |||
| 14 | The lines must match lines in the Emacs source tree exactly, | ||
| 15 | including any whitespace. | ||
| 16 | |||
| 17 | codespell.ignore | ||
| 18 | |||
| 19 | This file contains any words that are correct in the context of | ||
| 20 | Emacs, or that we otherwise choose to ignore. Use your best | ||
| 21 | judgment when adding words to this file. Common typos that are | ||
| 22 | only correct in highly specific contexts should probably be in | ||
| 23 | codespell.exclude instead. | ||
| 24 | |||
| 25 | codespell.rc | ||
| 26 | |||
| 27 | This file contains the Emacs specific codespell configuration. | ||