Skip to content

Commit a69375c

Browse files
tlindsay42Jason3S
andauthored
docs: Improve Getting started page > 1. Create a configuration file section (#7094)
Co-authored-by: Jason Dent <[email protected]>
1 parent 6dd7aae commit a69375c

File tree

2 files changed

+115
-3
lines changed

2 files changed

+115
-3
lines changed

website/.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
coverage
33
node_modules
44
**/auto_*
5+
**/*.mdx

website/docs/getting-started.mdx

+114-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,60 @@ Steps:
4646

4747
## 1. Create a configuration file.
4848

49-
CSpell can use JSON, Yaml, and JavaScript files for configuration. It automatically searches for one of the following: `cspell.json`, `cspell.config.yaml`, `cspell.config.cjs`.
49+
CSpell can use JSON, Yaml, and JavaScript files for configuration. It automatically searches for one of the following:
50+
51+
{/** @see https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell-lib/src/lib/Settings/Controller/configLoader/configLocations.ts */}
52+
53+
- `package.json`
54+
- `.cspell.json`
55+
- `cspell.json`
56+
- `.cSpell.json`
57+
- `cSpell.json`
58+
- `.cspell.jsonc`
59+
- `cspell.jsonc`
60+
- `.cspell.yaml`
61+
- `cspell.yaml`
62+
- `.cspell.yml`
63+
- `cspell.yml`
64+
- `.cspell.config.json`
65+
- `cspell.config.json`
66+
- `.cspell.config.jsonc`
67+
- `cspell.config.jsonc`
68+
- `.cspell.config.yaml`
69+
- `cspell.config.yaml`
70+
- `.cspell.config.yml`
71+
- `cspell.config.yml`
72+
- `.cspell.config.mjs`
73+
- `cspell.config.mjs`
74+
- `.cspell.config.cjs`
75+
- `cspell.config.cjs`
76+
- `.cspell.config.js`
77+
- `cspell.config.js`
78+
- `.config/.cspell.json`
79+
- `.config/cspell.json`
80+
- `.config/.cSpell.json`
81+
- `.config/cSpell.json`
82+
- `.config/.cspell.jsonc`
83+
- `.config/cspell.jsonc`
84+
- `.config/cspell.yaml`
85+
- `.config/cspell.yml`
86+
- `.config/.cspell.config.json`
87+
- `.config/cspell.config.json`
88+
- `.config/.cspell.config.jsonc`
89+
- `.config/cspell.config.jsonc`
90+
- `.config/.cspell.config.yaml`
91+
- `.config/cspell.config.yaml`
92+
- `.config/.cspell.config.yml`
93+
- `.config/cspell.config.yml`
94+
- `.config/.cspell.config.mjs`
95+
- `.config/cspell.config.mjs`
96+
- `.config/.cspell.config.cjs`
97+
- `.config/cspell.config.cjs`
98+
- `.config/.cspell.config.js`
99+
- `.config/cspell.config.js`
100+
- `.vscode/.cspell.json`
101+
- `.vscode/cSpell.json`
102+
- `.vscode/cspell.json`
50103

51104
For now choose to use either JSON or Yaml. Below are examples of each that include a custom dictionary definition. Both of them are equivalent. If you have both, CSpell will look for the `.json` file first.
52105

@@ -75,15 +128,73 @@ For now choose to use either JSON or Yaml. Below are examples of each that inclu
75128
version: '0.2'
76129
dictionaryDefinitions:
77130
- name: project-words
78-
path: './project-words.txt'
79-
addWords: true
131+
path: './project-words.txt'
132+
addWords: true
80133
dictionaries:
81134
- project-words
82135
ignorePaths:
83136
- 'node_modules'
84137
- '/project-words.txt'
85138
```
86139
</TabItem>
140+
<TabItem value="esm" label="cspell.config.mjs">
141+
```javascript
142+
import { defineConfig } from 'cspell';
143+
144+
export default defineConfig({
145+
version: '0.2',
146+
dictionaryDefinitions: [
147+
{
148+
name: 'project-words',
149+
path: './project-words.txt',
150+
addWords: true,
151+
},
152+
],
153+
dictionaries: ['project-words'],
154+
ignorePaths: ['node_modules', '/project-words.txt'],
155+
});
156+
```
157+
</TabItem>
158+
<TabItem value="commonjs" label="cspell.config.cjs">
159+
```javascript
160+
'use strict';
161+
162+
const { defineConfig } = require('@cspell/cspell-types');
163+
164+
module.exports = defineConfig({
165+
version: '0.2',
166+
dictionaryDefinitions: [
167+
{
168+
name: 'project-words',
169+
path: './project-words.txt',
170+
addWords: true,
171+
}
172+
],
173+
dictionaries: ['project-words'],
174+
ignorePaths: ['node_modules', '/project-words.txt'],
175+
});
176+
```
177+
</TabItem>
178+
<TabItem value="package.json" label="package.json">
179+
```json
180+
{
181+
...
182+
"cspell": {
183+
"version": "0.2",
184+
"dictionaryDefinitions": [
185+
{
186+
"name": "project-words",
187+
"path": "./project-words.txt",
188+
"addWords": true
189+
}
190+
],
191+
"dictionaries": ["project-words"],
192+
"ignorePaths": ["node_modules", "/project-words.txt"]
193+
}
194+
}
195+
```
196+
</TabItem>
197+
87198
</Tabs>
88199

89200
These configuration files do three things:

0 commit comments

Comments
 (0)