Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Improve Getting started page > 1. Create a configuration file section #7094

Merged
Merged
1 change: 1 addition & 0 deletions website/.prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
coverage
node_modules
**/auto_*
**/*.mdx
117 changes: 114 additions & 3 deletions website/docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,60 @@ Steps:

## 1. Create a configuration file.

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`.
CSpell can use JSON, Yaml, and JavaScript files for configuration. It automatically searches for one of the following:

{/** @see https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell-lib/src/lib/Settings/Controller/configLoader/configLocations.ts */}

- `package.json`
- `.cspell.json`
- `cspell.json`
- `.cSpell.json`
- `cSpell.json`
- `.cspell.jsonc`
- `cspell.jsonc`
- `.cspell.yaml`
- `cspell.yaml`
- `.cspell.yml`
- `cspell.yml`
- `.cspell.config.json`
- `cspell.config.json`
- `.cspell.config.jsonc`
- `cspell.config.jsonc`
- `.cspell.config.yaml`
- `cspell.config.yaml`
- `.cspell.config.yml`
- `cspell.config.yml`
- `.cspell.config.mjs`
- `cspell.config.mjs`
- `.cspell.config.cjs`
- `cspell.config.cjs`
- `.cspell.config.js`
- `cspell.config.js`
- `.config/.cspell.json`
- `.config/cspell.json`
- `.config/.cSpell.json`
- `.config/cSpell.json`
- `.config/.cspell.jsonc`
- `.config/cspell.jsonc`
- `.config/cspell.yaml`
- `.config/cspell.yml`
- `.config/.cspell.config.json`
- `.config/cspell.config.json`
- `.config/.cspell.config.jsonc`
- `.config/cspell.config.jsonc`
- `.config/.cspell.config.yaml`
- `.config/cspell.config.yaml`
- `.config/.cspell.config.yml`
- `.config/cspell.config.yml`
- `.config/.cspell.config.mjs`
- `.config/cspell.config.mjs`
- `.config/.cspell.config.cjs`
- `.config/cspell.config.cjs`
- `.config/.cspell.config.js`
- `.config/cspell.config.js`
- `.vscode/.cspell.json`
- `.vscode/cSpell.json`
- `.vscode/cspell.json`

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.

Expand Down Expand Up @@ -75,15 +128,73 @@ For now choose to use either JSON or Yaml. Below are examples of each that inclu
version: '0.2'
dictionaryDefinitions:
- name: project-words
path: './project-words.txt'
addWords: true
path: './project-words.txt'
addWords: true
dictionaries:
- project-words
ignorePaths:
- 'node_modules'
- '/project-words.txt'
```
</TabItem>
<TabItem value="esm" label="cspell.config.mjs">
```javascript
import { defineConfig } from 'cspell';

export default defineConfig({
version: '0.2',
dictionaryDefinitions: [
{
name: 'project-words',
path: './project-words.txt',
addWords: true,
},
],
dictionaries: ['project-words'],
ignorePaths: ['node_modules', '/project-words.txt'],
});
```
</TabItem>
<TabItem value="commonjs" label="cspell.config.cjs">
```javascript
'use strict';

const { defineConfig } = require('@cspell/cspell-types');

module.exports = defineConfig({
version: '0.2',
dictionaryDefinitions: [
{
name: 'project-words',
path: './project-words.txt',
addWords: true,
}
],
dictionaries: ['project-words'],
ignorePaths: ['node_modules', '/project-words.txt'],
});
```
</TabItem>
<TabItem value="package.json" label="package.json">
```json
{
...
"cspell": {
"version": "0.2",
"dictionaryDefinitions": [
{
"name": "project-words",
"path": "./project-words.txt",
"addWords": true
}
],
"dictionaries": ["project-words"],
"ignorePaths": ["node_modules", "/project-words.txt"]
}
}
```
</TabItem>

</Tabs>

These configuration files do three things:
Expand Down
Loading