forked from ansible/ansible-navigator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cspell.config.yaml
49 lines (48 loc) · 1.38 KB
/
cspell.config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
dictionaryDefinitions:
- name: words
path: .config/dictionary.txt
addWords: true
dictionaries:
- bash
- networking-terms
- python
- words
- "!aws"
- "!backwards-compatibility"
- "!cryptocurrencies"
- "!cpp"
ignorePaths:
# All dot files in the root
- \.*
# This file
- cspell.config.yaml
# The docs requirements file
- docs/requirements.in
# Ignore licenses
- licenses/*
# The mypy configuration file
- mypy.ini
# The shared file for tool configuration
- pyproject.toml
# The setup file
- setup.cfg
# All grammar (text-mate) tokenization files
- src/ansible_navigator/data/grammar/*.json
# Theme files
- src/ansible_navigator/data/themes/*.json
# Anything in the vendored tokenization directory
- src/ansible_navigator/tm_tokenize/*
# requirements.txt is generated
- requirements.txt
# All fixture files in the tests directory
- tests/fixtures/integration/actions/**/*.json
# The tox configuration file
- tox.ini
ignoreRegExpList:
- "--\\w+" # ansible-navigator long CLI parameters
- "(window|_screen|win)\\.\\w+" # curses calls e.g. getyx
- "\\^.*$" # kegex regular expressions
- "ANSIBLE_\\w+" # ansible environment variables
- "curses\\.\\w+" # curses functions e.g. curses.doupdate
- "monkeypatch\\.\\w+" # monkeypatch functions e.g. monkeypatch.setenv
- "request\\.node\\.\\w+" # pytest request e.g. request.node.nodeid