@d-zero/cspell-config 5.0.0-alpha.16 → 5.0.0-alpha.18

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.
Files changed (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +28 -2
  3. package/package.json +2 -2
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-zero/cspell-config",
3
- "version": "5.0.0-alpha.16",
3
+ "version": "5.0.0-alpha.18",
4
4
  "description": "Configurations of CSpell",
5
5
  "repository": "https://github.com/d-zero-dev/linters.git",
6
6
  "author": "D-ZERO Co., Ltd.",
@@ -16,5 +16,5 @@
16
16
  "dependencies": {
17
17
  "cspell": "8.6.0"
18
18
  },
19
- "gitHead": "baddf6a71360a679cb0e418d791daab1605e710f"
19
+ "gitHead": "cd48829b16eb5fb76fb041265a6e062c8c3f27f9"
20
20
  }