-
Notifications
You must be signed in to change notification settings - Fork 1
/
cspell.yml
54 lines (50 loc) · 1.18 KB
/
cspell.yml
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
50
51
52
53
54
# Configuration for the cspell command-line tool and the Code Spell Checker
# VSCode extension
# (https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker).
# Add a repo-specific dictionary. Any new real words can be added to
# cspell-project-words.txt, one per line.
dictionaryDefinitions:
- name: workspace
path: './cspell-project-words.txt'
description: Custom Workspace Dictionary
addWords: true
scope: workspace
dictionaries:
- workspace
- css
- html
- fonts
- typescript
- softwareTerms
- companies
- lorem-ipsum
- bash
- node
# Ignore files that aren't checked in to git as well as files that aren't written
# by hand. Note that we do want to check, say, JSON files (as package.json
# contains English text like package descriptions).
useGitignore: true
ignorePaths:
- yarn.lock
- '*.min.*'
- '**/*.svg'
- cspell.yml
- '**/*.config.js'
- package.json
- '.github'
- '**/*.json'
- .gitignore'
- '.yarn'
- '.pnp.*'
- '*.html'
- '*.webp'
- '*.xml'
- '.husky/**/*'
- .eslintrc
- .eslintignore
ignoreRegExpList:
# GitHub Security Advisories
- GHSA-[-\w]+
- Email
- Urls
- "#[\\w-]*"