File tree Expand file tree Collapse file tree 2 files changed +76
-0
lines changed Expand file tree Collapse file tree 2 files changed +76
-0
lines changed Original file line number Diff line number Diff line change
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'
Original file line number Diff line number Diff line change @@ -12,4 +12,12 @@ export default {
12
12
trailingComma : "all" ,
13
13
plugins : [ "prettier-plugin-tailwindcss" ] ,
14
14
tailwindStylesheet : "./app/app.css" ,
15
+ overrides : [
16
+ {
17
+ files : [ "**/*.yml" , "**/*.yaml" ] ,
18
+ options : {
19
+ singleQuote : true ,
20
+ } ,
21
+ } ,
22
+ ] ,
15
23
} ;
You can’t perform that action at this time.
0 commit comments