@m-social/cspell-config 0.1.2 → 0.2.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/cspell.config.js CHANGED
@@ -8,18 +8,23 @@ const config = {
8
8
  description: "CSpell configuration used at M-Social.",
9
9
  import: ["@cspell/cspell-bundled-dicts", "@cspell/dict-ru_ru/cspell-ext.json"],
10
10
  useGitignore: true,
11
- words: [
12
- "oxlint",
13
- "oxlintrc",
14
- "tsgo",
15
- "tsgolint",
16
- "lingui",
17
- "lefthook",
18
- "m-social",
19
- "msocial",
20
- "msocialproduction",
21
- ],
11
+ words: ["m-social", "msocial", "msocialproduction"],
22
12
  ignorePaths: ["**/package.json", "**/patches", "**/pnpm-lock.yaml", "**/Jenkinsfile"],
13
+ dictionaryDefinitions: [
14
+ {
15
+ name: "m-social:packages",
16
+ path: "./dictionaries/packages.txt",
17
+ },
18
+ {
19
+ name: "m-social:internal",
20
+ path: "./dictionaries/internal.txt",
21
+ },
22
+ {
23
+ name: "m-social:terms",
24
+ path: "./dictionaries/terms.txt",
25
+ },
26
+ ],
27
+ dictionaries: ["m-social:packages", "m-social:internal", "m-social:terms"],
23
28
  };
24
29
 
25
30
  export default config;
@@ -0,0 +1,2 @@
1
+ notask
2
+ undv
@@ -0,0 +1,32 @@
1
+ auditjs
2
+ bprogress
3
+ defu
4
+ embla
5
+ glitchtip
6
+ gsap
7
+ innerhtml
8
+ lefthook
9
+ lightningcss
10
+ lingui
11
+ maskito
12
+ neodrag
13
+ neodx
14
+ overscan
15
+ oxlint
16
+ oxlintrc
17
+ pandacss
18
+ picklist
19
+ sonarjs
20
+ steiger
21
+ timerset
22
+ titleize
23
+ tsgo
24
+ tsgolint
25
+ turbopack
26
+ unfonts
27
+ usehooks
28
+ vali
29
+ varlock
30
+ vaul
31
+ virtua
32
+ xior
@@ -0,0 +1,9 @@
1
+ autoplay
2
+ checkmark
3
+ maxage
4
+ nodownload
5
+ postprocessors
6
+ promocode
7
+ subgrid
8
+ tabular-nums
9
+ unitless
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m-social/cspell-config",
3
- "version": "0.1.2",
3
+ "version": "0.2.0",
4
4
  "description": "Shared CSpell config for projects used at M-Social",
5
5
  "keywords": [
6
6
  "m-social",
@@ -25,11 +25,13 @@
25
25
  "exports": {
26
26
  ".": "./cspell.config.js",
27
27
  "./cspell.config.js": "./cspell.config.js",
28
- "./cspell.json": "./cspell.json"
28
+ "./cspell.json": "./cspell.json",
29
+ "./dictionaries/*": "./dictionaries/*"
29
30
  },
30
31
  "files": [
31
32
  "cspell.json",
32
- "cspell.config.js"
33
+ "cspell.config.js",
34
+ "dictionaries"
33
35
  ],
34
36
  "dependencies": {
35
37
  "@cspell/cspell-bundled-dicts": "^9.6.4",