Exclude / Include Patterns
Covers:
patterns
ignoreRegExpList
includeRegExpList
The spell checker combines the patterns
, the ignoreRegExpList
, and the includeRegExpList
settings based upon the overrides
and languageSettings
for the file.
It uses includeRegExpList
and ignoreRegExpList
in the following way:
- Make a set of text to be included by matching against
includeRegExpList
(if empty, include everything). - Make a set of text to be excluded by matching against
ignoreRegExpList
. - Check all text that is included but not excluded.
includeRegExpList
and ignoreRegExpList
can include regular expressions or pattern names. Pattern names resolved against patterns defined in patterns
.
Example:
ignoreRegExpList:
- Email
- >-
/ftp:[^\s]*/g
Explained:
Email
is a predefined pattern./ftp:[^\s]*/g
- will match anything that starts withftp:
until the first space.
Patterns
Patterns allow you to define reusable patterns for excluding or including text to be spell checked. To exclude text matching a pattern from being spell checked, include it the ignoreRegExpList
.
Predefined Patterns
- See: Predefined Patterns
Default ignoreRegExpList
Patterns
The following patterns are used by default to ignore non-text content.
Urls
Email
RsaCert
SshRsa
Base64MultiLine
Base64SingleLine
CommitHash
CommitHashLink
CStyleHexValue
CSSHexValue
SHA
HashStrings
UnicodeRef
UUID
Verbose Regular Expressions
Version | Description |
---|---|
^6.9.0 | Initial support |
Defining RegExp Patterns in .json
or .yaml
CSpell config files can be difficult.
This feature makes it easier to define patterns in a .yaml
file.
CSpell now supports the x
- verbose flag.
/
^(\s*`{3,}).* # match the ```
[\s\S]*? # the block of code
^\1 # end of the block
/gmx
Example of Ignoring code block in markdown
.
cspell.config.yaml
patterns:
- name: markdown_code_block
pattern: |
/
^(\s*`{3,}).* # match the ```
[\s\S]*? # the block of code
^\1 # end of the block
/gmx
languageSettings:
- languageId: markdown
ignoreRegExpList:
- markdown_code_block
Leading and trailing spaces are automatically trimmed from patterns, make it possible to avoid escaping in YAML by using >
without the trailing -
.
ignoreRegExpList:
- >
/auth_token: .*/g
- >-
/this works too/g