@storm-software/cspell 0.10.1 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/cspell-base.json +0 -6
- package/cspell-ext.json +0 -6
- package/cspell-minimal.json +0 -6
- package/cspell-recommended.json +81 -0
- package/dict/storm.txt +1 -0
- package/dist/index.cjs +508 -0
- package/dist/index.d.cts +109 -0
- package/dist/index.d.ts +109 -0
- package/dist/index.js +508 -0
- package/package.json +31 -87
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
declare const configs: {
|
|
2
|
+
base: {
|
|
3
|
+
version: string;
|
|
4
|
+
description: string;
|
|
5
|
+
language: string;
|
|
6
|
+
enabled: boolean;
|
|
7
|
+
caseSensitive: boolean;
|
|
8
|
+
enabledLanguageIds: string[];
|
|
9
|
+
maxNumberOfProblems: number;
|
|
10
|
+
dictionaries: string[];
|
|
11
|
+
flagWords: never[];
|
|
12
|
+
useGitignore: boolean;
|
|
13
|
+
ignoreRegExpList: string[];
|
|
14
|
+
overrides: {
|
|
15
|
+
filename: string;
|
|
16
|
+
ignoreRegExpList: string[];
|
|
17
|
+
}[];
|
|
18
|
+
patterns: {
|
|
19
|
+
name: string;
|
|
20
|
+
description: string;
|
|
21
|
+
pattern: string;
|
|
22
|
+
}[];
|
|
23
|
+
languageSettings: ({
|
|
24
|
+
languageId: string;
|
|
25
|
+
dictionaries: string[];
|
|
26
|
+
enabled?: undefined;
|
|
27
|
+
ignoreRegExpList?: undefined;
|
|
28
|
+
} | {
|
|
29
|
+
languageId: string;
|
|
30
|
+
enabled: boolean;
|
|
31
|
+
dictionaries?: undefined;
|
|
32
|
+
ignoreRegExpList?: undefined;
|
|
33
|
+
} | {
|
|
34
|
+
languageId: string;
|
|
35
|
+
ignoreRegExpList: string[];
|
|
36
|
+
dictionaries?: undefined;
|
|
37
|
+
enabled?: undefined;
|
|
38
|
+
})[];
|
|
39
|
+
import: string[];
|
|
40
|
+
};
|
|
41
|
+
minimal: {
|
|
42
|
+
version: string;
|
|
43
|
+
description: string;
|
|
44
|
+
language: string;
|
|
45
|
+
caseSensitive: boolean;
|
|
46
|
+
dictionaries: string[];
|
|
47
|
+
flagWords: never[];
|
|
48
|
+
useGitignore: boolean;
|
|
49
|
+
ignoreRegExpList: string[];
|
|
50
|
+
ignorePaths: never[];
|
|
51
|
+
overrides: {
|
|
52
|
+
filename: string;
|
|
53
|
+
ignoreRegExpList: string[];
|
|
54
|
+
}[];
|
|
55
|
+
patterns: ({
|
|
56
|
+
name: string;
|
|
57
|
+
pattern: string;
|
|
58
|
+
description: string;
|
|
59
|
+
} | {
|
|
60
|
+
name: string;
|
|
61
|
+
pattern: string;
|
|
62
|
+
description?: undefined;
|
|
63
|
+
})[];
|
|
64
|
+
import: string[];
|
|
65
|
+
};
|
|
66
|
+
recommended: {
|
|
67
|
+
version: string;
|
|
68
|
+
enabledLanguageIds: string[];
|
|
69
|
+
dictionaries: string[];
|
|
70
|
+
languageSettings: {
|
|
71
|
+
languageId: string;
|
|
72
|
+
dictionaries: string[];
|
|
73
|
+
}[];
|
|
74
|
+
import: string[];
|
|
75
|
+
};
|
|
76
|
+
ext: {
|
|
77
|
+
id: string;
|
|
78
|
+
name: string;
|
|
79
|
+
description: string;
|
|
80
|
+
readonly: boolean;
|
|
81
|
+
dictionaryDefinitions: {
|
|
82
|
+
name: string;
|
|
83
|
+
path: string;
|
|
84
|
+
description: string;
|
|
85
|
+
}[];
|
|
86
|
+
dictionaries: never[];
|
|
87
|
+
languageSettings: {
|
|
88
|
+
languageId: string[];
|
|
89
|
+
locale: string;
|
|
90
|
+
includeRegExpList: never[];
|
|
91
|
+
ignoreRegExpList: never[];
|
|
92
|
+
patterns: never[];
|
|
93
|
+
dictionaries: string[];
|
|
94
|
+
dictionaryDefinitions: never[];
|
|
95
|
+
}[];
|
|
96
|
+
};
|
|
97
|
+
all: {
|
|
98
|
+
version: string;
|
|
99
|
+
enabledLanguageIds: string[];
|
|
100
|
+
dictionaries: string[];
|
|
101
|
+
languageSettings: {
|
|
102
|
+
languageId: string;
|
|
103
|
+
dictionaries: string[];
|
|
104
|
+
}[];
|
|
105
|
+
import: string[];
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
export { configs };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
declare const configs: {
|
|
2
|
+
base: {
|
|
3
|
+
version: string;
|
|
4
|
+
description: string;
|
|
5
|
+
language: string;
|
|
6
|
+
enabled: boolean;
|
|
7
|
+
caseSensitive: boolean;
|
|
8
|
+
enabledLanguageIds: string[];
|
|
9
|
+
maxNumberOfProblems: number;
|
|
10
|
+
dictionaries: string[];
|
|
11
|
+
flagWords: never[];
|
|
12
|
+
useGitignore: boolean;
|
|
13
|
+
ignoreRegExpList: string[];
|
|
14
|
+
overrides: {
|
|
15
|
+
filename: string;
|
|
16
|
+
ignoreRegExpList: string[];
|
|
17
|
+
}[];
|
|
18
|
+
patterns: {
|
|
19
|
+
name: string;
|
|
20
|
+
description: string;
|
|
21
|
+
pattern: string;
|
|
22
|
+
}[];
|
|
23
|
+
languageSettings: ({
|
|
24
|
+
languageId: string;
|
|
25
|
+
dictionaries: string[];
|
|
26
|
+
enabled?: undefined;
|
|
27
|
+
ignoreRegExpList?: undefined;
|
|
28
|
+
} | {
|
|
29
|
+
languageId: string;
|
|
30
|
+
enabled: boolean;
|
|
31
|
+
dictionaries?: undefined;
|
|
32
|
+
ignoreRegExpList?: undefined;
|
|
33
|
+
} | {
|
|
34
|
+
languageId: string;
|
|
35
|
+
ignoreRegExpList: string[];
|
|
36
|
+
dictionaries?: undefined;
|
|
37
|
+
enabled?: undefined;
|
|
38
|
+
})[];
|
|
39
|
+
import: string[];
|
|
40
|
+
};
|
|
41
|
+
minimal: {
|
|
42
|
+
version: string;
|
|
43
|
+
description: string;
|
|
44
|
+
language: string;
|
|
45
|
+
caseSensitive: boolean;
|
|
46
|
+
dictionaries: string[];
|
|
47
|
+
flagWords: never[];
|
|
48
|
+
useGitignore: boolean;
|
|
49
|
+
ignoreRegExpList: string[];
|
|
50
|
+
ignorePaths: never[];
|
|
51
|
+
overrides: {
|
|
52
|
+
filename: string;
|
|
53
|
+
ignoreRegExpList: string[];
|
|
54
|
+
}[];
|
|
55
|
+
patterns: ({
|
|
56
|
+
name: string;
|
|
57
|
+
pattern: string;
|
|
58
|
+
description: string;
|
|
59
|
+
} | {
|
|
60
|
+
name: string;
|
|
61
|
+
pattern: string;
|
|
62
|
+
description?: undefined;
|
|
63
|
+
})[];
|
|
64
|
+
import: string[];
|
|
65
|
+
};
|
|
66
|
+
recommended: {
|
|
67
|
+
version: string;
|
|
68
|
+
enabledLanguageIds: string[];
|
|
69
|
+
dictionaries: string[];
|
|
70
|
+
languageSettings: {
|
|
71
|
+
languageId: string;
|
|
72
|
+
dictionaries: string[];
|
|
73
|
+
}[];
|
|
74
|
+
import: string[];
|
|
75
|
+
};
|
|
76
|
+
ext: {
|
|
77
|
+
id: string;
|
|
78
|
+
name: string;
|
|
79
|
+
description: string;
|
|
80
|
+
readonly: boolean;
|
|
81
|
+
dictionaryDefinitions: {
|
|
82
|
+
name: string;
|
|
83
|
+
path: string;
|
|
84
|
+
description: string;
|
|
85
|
+
}[];
|
|
86
|
+
dictionaries: never[];
|
|
87
|
+
languageSettings: {
|
|
88
|
+
languageId: string[];
|
|
89
|
+
locale: string;
|
|
90
|
+
includeRegExpList: never[];
|
|
91
|
+
ignoreRegExpList: never[];
|
|
92
|
+
patterns: never[];
|
|
93
|
+
dictionaries: string[];
|
|
94
|
+
dictionaryDefinitions: never[];
|
|
95
|
+
}[];
|
|
96
|
+
};
|
|
97
|
+
all: {
|
|
98
|
+
version: string;
|
|
99
|
+
enabledLanguageIds: string[];
|
|
100
|
+
dictionaries: string[];
|
|
101
|
+
languageSettings: {
|
|
102
|
+
languageId: string;
|
|
103
|
+
dictionaries: string[];
|
|
104
|
+
}[];
|
|
105
|
+
import: string[];
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
export { configs };
|