Skip to content

Commit 6ad18ad

Browse files
committed
add cSpell configuration file
1 parent 9afc397 commit 6ad18ad

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

.vscode/cspell.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
// SPDX-FileCopyrightText: 2025 smdn <smdn@smdn.jp>
2+
// SPDX-License-Identifier: MIT
3+
//
4+
// cSpell Settings
5+
// https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker
6+
//
7+
{
8+
// Version of the setting file. Always 0.2
9+
"version": "0.2",
10+
// language - current active spelling language
11+
"language": "en",
12+
// words - list of words to be always considered correct
13+
"words": [
14+
"memberwise",
15+
"munin",
16+
"smdn",
17+
],
18+
"ignoreWords": [
19+
"dirtyconfig",
20+
"netstandard",
21+
"multigraph",
22+
"vlabel"
23+
],
24+
// flagWords - list of words to be always considered incorrect
25+
// This is useful for offensive words and common spelling errors.
26+
// For example "hte" should be "the"
27+
"flagWords": [],
28+
"ignorePaths": [
29+
"**/bin",
30+
"**/obj",
31+
".git",
32+
],
33+
"enabledLanguageIds": [
34+
"csharp",
35+
"markdown",
36+
"plaintext",
37+
"xml",
38+
"yaml"
39+
],
40+
}

0 commit comments

Comments
 (0)