Skip to content

Commit 5b7c00b

Browse files
committed
docs: Fix indent + use single quotes
* #7093
1 parent 773d8c3 commit 5b7c00b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

website/docs/getting-started.mdx

+11-11
Original file line numberDiff line numberDiff line change
@@ -141,21 +141,21 @@ For now choose to use either JSON or Yaml. Below are examples of each that inclu
141141
```javascript
142142
'use strict';
143143

144-
import { defineConfig } from "cspell";
144+
import { defineConfig } from 'cspell';
145145

146146
export default defineConfig({
147147
$schema:
148148
"https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
149-
version: "0.2",
150-
dictionaryDefinitions: [
151-
{
152-
name: "project-words",
153-
path: "./project-words.txt",
154-
addWords: true,
155-
},
156-
],
157-
dictionaries: ["project-words"],
158-
ignorePaths: ["node_modules", "/project-words.txt"],
149+
version: '0.2',
150+
dictionaryDefinitions: [
151+
{
152+
name: 'project-words',
153+
path: './project-words.txt',
154+
addWords: true,
155+
},
156+
],
157+
dictionaries: ['project-words'],
158+
ignorePaths: ['node_modules', '/project-words.txt'],
159159
});
160160
```
161161
</TabItem>

0 commit comments

Comments
 (0)