@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 +1 -1
- package/commitlint/commitlint.config.mjs +21 -22
- package/cspell/words.txt +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ export default eslintConfig
|
|
|
68
68
|
|
|
69
69
|
| 種類 | 設定パッケージ名 |
|
|
70
70
|
| ------------- | ------------------------------------------------- |
|
|
71
|
-
| base | `@yoshinani/style-guide/typescript
|
|
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
|
-
"
|
|
10
|
-
//
|
|
11
|
-
"
|
|
12
|
-
//
|
|
13
|
-
"
|
|
14
|
-
//
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"
|
|
22
|
-
//
|
|
23
|
-
"
|
|
24
|
-
//
|
|
25
|
-
"
|
|
26
|
-
//
|
|
27
|
-
"
|
|
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