-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcspell.config.ts
More file actions
50 lines (49 loc) · 884 Bytes
/
cspell.config.ts
File metadata and controls
50 lines (49 loc) · 884 Bytes
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
import { defineConfig } from 'cspell'
export default defineConfig({
words: [
'azat',
'browserslistrc',
'canonicalize',
'changelogithub',
'chartjs',
'chrono',
'combak',
'crosspost',
'datelike',
'dicebear',
'docme',
'docmeup',
'docu',
'docup',
'docus',
'docyou',
'hexdigit',
'humanwhocodes',
'indicatif',
'lightningcss',
'mockall',
'registerables',
'replacen',
'rklphylk',
'ropey',
'serde',
'singlefile',
'todoctor',
'todos',
'trivias',
'usefathom',
],
ignorePaths: [
'.github',
'Cargo.lock',
'changelog.md',
'license',
'pnpm-lock.yaml',
'preview/elements/avatar.svelte',
'preview/mock/data.ts',
'tsconfig.json',
],
dictionaries: ['css', 'html', 'node', 'npm', 'typescript'],
useGitignore: true,
language: 'en',
})