@yoshinani/style-guide 0.7.0 → 0.9.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 CHANGED
@@ -68,7 +68,7 @@ export default eslintConfig
68
68
 
69
69
  | 種類 | 設定パッケージ名 |
70
70
  | ------------- | ------------------------------------------------- |
71
- | base | `@yoshinani/style-guide/typescript/base` |
71
+ | base | `@yoshinani/style-guide/typescript` |
72
72
  | nextjs | `@yoshinani/style-guide/typescript/nextjs` |
73
73
  | react-library | `@yoshinani/style-guide/typescript/react-library` |
74
74
 
@@ -5,28 +5,27 @@ export default {
5
5
  2,
6
6
  "always",
7
7
  [
8
- // ビルドシステムや依存関係のみの変更
9
- "build",
10
- // CIワークフローの変更
11
- "ci",
12
- // ドキュメントのみの変更
13
- "docs",
14
- // 新機能
15
- "feat",
16
- // バグ修正
17
- "fix",
18
- // パフォーマンス向上のためのコード変更
19
- "perf",
20
- // バグ修正や新機能追加以外のコード変更
21
- "refactor",
22
- // 以前のコミットの取り消し
23
- "revert",
24
- // コードの意味に影響しない変更
25
- "style",
26
- // テストの追加や既存テストの修正
27
- "test",
28
- // 自動リリース専用
29
- "release",
8
+ "build", // ビルドシステムや依存関係のみの変更
9
+ "docs", // ドキュメントのみの変更
10
+ "feat", // 新機能
11
+ "fix", // バグ修正
12
+ "refactor", // バグ修正や新機能追加以外のコード変更
13
+ "test", // テストの追加や既存テストの修正
14
+ "release", // 自動リリース専用
15
+ ],
16
+ ],
17
+ "subject-case": [
18
+ 0,
19
+ "never",
20
+ [
21
+ "lower-case", // default
22
+ "upper-case", // UPPERCASE
23
+ "camel-case", // camelCase
24
+ "kebab-case", // kebab-case
25
+ "pascal-case", // PascalCase
26
+ "sentence-case", // Sentence case
27
+ "snake-case", // snake_case
28
+ "start-case", // Start Case
30
29
  ],
31
30
  ],
32
31
  },
package/cspell/words.txt CHANGED
@@ -5,6 +5,7 @@ liff
5
5
  mypage
6
6
  nakanoaas
7
7
  neverthrow
8
+ notionhq
8
9
  opengraph
9
10
  picklist
10
11
  postback
@@ -20,6 +21,7 @@ sonner
20
21
  supabase
21
22
  turbopack
22
23
  turborepo
24
+ uncollectible
23
25
  usecase
24
26
  valibot
25
27
  velona
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yoshinani/style-guide",
3
- "version": "0.7.0",
3
+ "version": "0.9.0",
4
4
  "description": "Yoshinani's Style Guide",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/yoshinani-dev/style-guide#readme",