Skip to content

Commit 6015d6d

Browse files
authored
Merge pull request #21 from codeforjapan/ci/dependabot
Setup dependabot
2 parents 869b996 + 6c73acd commit 6015d6d

File tree

2 files changed

+76
-0
lines changed

2 files changed

+76
-0
lines changed

.github/dependabot.yml

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
version: 2
2+
3+
updates:
4+
- package-ecosystem: 'github-actions'
5+
directory: '/'
6+
schedule:
7+
day: 'monday'
8+
interval: 'weekly'
9+
time: '10:00'
10+
timezone: 'Asia/Tokyo'
11+
12+
- package-ecosystem: 'npm'
13+
directory: '/'
14+
schedule:
15+
day: 'monday'
16+
interval: 'weekly'
17+
time: '10:00'
18+
timezone: 'Asia/Tokyo'
19+
groups:
20+
# TIP: 複数の group にマッチする場合最初の group が適用される
21+
# なので、より詳細な group を先に書く
22+
react:
23+
patterns:
24+
- 'react'
25+
- 'react-dom'
26+
- '@types/react'
27+
- '@types/react-dom'
28+
update-types:
29+
- 'minor'
30+
- 'patch'
31+
react-router:
32+
patterns:
33+
# TODO: add react-router patterns
34+
- '@remix-run*'
35+
mantine:
36+
patterns:
37+
- '@mantine*'
38+
update-types:
39+
- 'minor'
40+
- 'patch'
41+
conform:
42+
patterns:
43+
- '@conform-to*'
44+
typescript:
45+
patterns:
46+
- 'typescript'
47+
update-types:
48+
- 'minor'
49+
- 'patch'
50+
eslint:
51+
patterns:
52+
- 'eslint*'
53+
- '@eslint*'
54+
- '@types/eslint*'
55+
- '@typescript-eslint*'
56+
- 'globals'
57+
update-types:
58+
- 'minor'
59+
- 'patch'
60+
test:
61+
patterns:
62+
- 'vitest'
63+
- '@testing-library*'
64+
dev-dependencies:
65+
dependency-type: 'development'
66+
update-types:
67+
- 'minor'
68+
- 'patch'

prettier.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,12 @@ export default {
1212
trailingComma: "all",
1313
plugins: ["prettier-plugin-tailwindcss"],
1414
tailwindStylesheet: "./app/app.css",
15+
overrides: [
16+
{
17+
files: ["**/*.yml", "**/*.yaml"],
18+
options: {
19+
singleQuote: true,
20+
},
21+
},
22+
],
1523
};

0 commit comments

Comments
 (0)