@d-zero/cspell-config 5.0.0-alpha.3 → 5.0.0-alpha.31

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 D-ZERO Co., Ltd.
3
+ Copyright (c) 2024 D-ZERO Co., Ltd.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,4 +1,30 @@
1
1
  # `@d-zero/cspell-config`
2
2
 
3
- - 使用: 🆗 使用可
4
- - 解説: 🚧 準備中
3
+ ## 個別インストール
4
+
5
+ ```sh
6
+ yarn add -D @d-zero/cspell-config
7
+ ```
8
+
9
+ ## 使い方
10
+
11
+ `cspell.json`を作成し、[`import`](https://cspell.org/configuration/imports/#importing-configuration)機能を使って読み込みます。
12
+
13
+ ```json
14
+ {
15
+ "import": ["@d-zero/cspell-config"]
16
+ }
17
+ ```
18
+
19
+ ### 拡張
20
+
21
+ プロジェクトに合わせて設定を追加します。
22
+
23
+ ```json
24
+ {
25
+ "import": ["@d-zero/cspell-config"],
26
+
27
+ // 例: 単語を追加する
28
+ "words": ["example", "word"]
29
+ }
30
+ ```
package/cspell.json CHANGED
@@ -8,6 +8,7 @@
8
8
  "**/.gitignore",
9
9
  "**/*.svg",
10
10
  "**/cspell.json",
11
+ "**/LICENSE",
11
12
  "**/package.json"
12
13
  ],
13
14
  "dictionaries": [
@@ -22,15 +23,35 @@
22
23
  "softwareTerms",
23
24
  "typescript"
24
25
  ],
25
- "words": ["astrojs", "htdocs", "tsconfigs"],
26
+ "words": [
27
+ "astrojs",
28
+ "ckeditor",
29
+ "execa",
30
+ "htdocs",
31
+ "nocjsp",
32
+ "ress",
33
+
34
+ // Configurations
35
+ "commitlintrc",
36
+ "lintrc",
37
+ "markuplintrc",
38
+ "stylelintrc",
39
+ "textlintrc",
40
+ "tsconfigs",
41
+ // Font
42
+ "FOUT",
43
+ "noto",
44
+ // Layout
45
+ "trbl" // top, right, bottom, left
46
+ ],
26
47
  "overrides": [
27
48
  {
28
49
  "filename": ["**/*.{css,scss}", "**/tailwind.config.*"],
29
50
  "words": [
30
51
  // Font settings
31
52
  "noto",
32
- "pcap",
33
- "palt"
53
+ "palt",
54
+ "pcap"
34
55
  ]
35
56
  }
36
57
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-zero/cspell-config",
3
- "version": "5.0.0-alpha.3",
3
+ "version": "5.0.0-alpha.31",
4
4
  "description": "Configurations of CSpell",
5
5
  "repository": "https://github.com/d-zero-dev/linters.git",
6
6
  "author": "D-ZERO Co., Ltd.",
@@ -9,12 +9,15 @@
9
9
  "publishConfig": {
10
10
  "access": "public"
11
11
  },
12
+ "engines": {
13
+ "node": ">=22.0.0"
14
+ },
12
15
  "files": [
13
16
  "cspell.json"
14
17
  ],
15
18
  "main": "cspell.json",
16
19
  "dependencies": {
17
- "cspell": "8.3.2"
20
+ "cspell": "8.8.2"
18
21
  },
19
- "gitHead": "5defdbdfc5b5afe08035e476f289cbad0c7d2e27"
22
+ "gitHead": "a889b518610d8e7884938881540f0a0248dc0d7e"
20
23
  }