File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed
Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments