forked from discourse/discourse
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlefthook.yml
More file actions
175 lines (170 loc) · 4.5 KB
/
lefthook.yml
File metadata and controls
175 lines (170 loc) · 4.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
output:
- summary
- empty_summary
- failure
- execution
- execution_out
- execution_info
- skips
glob_matcher: doublestar
pre-commit:
parallel: true
skip:
- merge
- rebase
commands:
rubocop:
exclude:
- "bin/notify_file_change"
- "bin/docker/**/*"
glob:
- "**/*.{rb,rake,thor}"
- "bin/**/*"
- "Gemfile"
run: bundle exec rubocop --force-exclusion {staged_files}
syntax_tree:
exclude:
- "bin/notify_file_change"
- "bin/docker/**/*"
glob:
- "**/*.{rb,rake,thor}"
- "bin/**/*"
- "Gemfile"
run: bundle exec stree check Gemfile {staged_files}
prettier:
glob:
- "app/assets/stylesheets/**/*.{css,scss}"
- "frontend/**/*.{js,gjs,scss,css,cjs,mjs}"
- "plugins/**/*.{js,gjs,scss,css,cjs,mjs}"
- "themes/**/*.{js,gjs,scss,css,cjs,mjs}"
run: pnpm pprettier --list-different {staged_files}
eslint:
glob:
- "frontend/**/*.{js,gjs}"
- "plugins/**/*.{js,gjs}"
- "themes/**/*.{js,gjs}"
run: pnpm eslint --quiet {staged_files}
ember-template-lint:
glob:
- "frontend/**/*.gjs"
- "plugins/**/*.gjs"
- "themes/**/*.gjs"
run: pnpm ember-template-lint {staged_files}
yaml-syntax:
glob: "**/*.{yaml,yml}"
# database.yml is an erb file not a yaml file
exclude: "config/database.yml"
run: bundle exec yaml-lint {staged_files}
i18n-lint:
glob: "**/{client,server}.en.yml"
run: bundle exec ruby script/i18n_lint.rb {staged_files}
stylelint:
glob:
- "app/assets/stylesheets/**/*.scss"
- "plugins/**/assets/stylesheets/**/*.scss"
- "themes/**/*.scss"
run: pnpm stylelint {staged_files}
fix-staged:
parallel: false
commands:
prettier:
glob:
- "app/assets/stylesheets/**/*.{css,scss}"
- "frontend/**/*.{js,gjs,scss,css,cjs,mjs}"
- "plugins/**/*.{js,gjs,scss,css,cjs,mjs}"
- "themes/**/*.{js,gjs,scss,css,cjs,mjs}"
run: pnpm pprettier --write {staged_files}
eslint:
glob:
- "frontend/**/*.{js,gjs}"
- "plugins/**/*.{js,gjs}"
- "themes/**/*.{js,gjs}"
run: pnpm eslint --fix {staged_files}
ember-template-lint:
glob:
- "frontend/**/*.gjs"
- "plugins/**/*.gjs"
- "themes/**/*.gjs"
run: pnpm ember-template-lint --fix {staged_files}
stylelint:
glob:
- "app/assets/stylesheets/**/*.scss"
- "plugins/**/assets/stylesheets/**/*.scss"
- "themes/**/*.scss"
run: pnpm stylelint --fix {staged_files}
rubocop:
exclude:
- "bin/notify_file_change"
- "bin/docker/**/*"
glob:
- "**/*.{rb,rake,thor}"
- "bin/**/*"
- "Gemfile"
run: bundle exec rubocop --force-exclusion -A {staged_files}
syntax_tree:
exclude:
- "bin/notify_file_change"
- "bin/docker/**/*"
glob:
- "**/*.{rb,rake,thor}"
- "bin/**/*"
- "Gemfile"
run: bundle exec stree write Gemfile {staged_files}
fix-all:
parallel: false
commands:
prettier:
run: pnpm lint:prettier:fix
eslint:
run: pnpm lint:js:fix
ember-template-lint:
run: pnpm lint:hbs:fix
stylelint:
run: pnpm lint:css:fix
rubocop:
run: bundle exec rubocop --force-exclusion -A
syntax_tree:
exclude:
- "bin/notify_file_change"
- "bin/docker/**/*"
glob:
- "**/*.{rb,rake,thor}"
- "bin/**/*"
- "Gemfile"
run: bundle exec stree write Gemfile {all_files}
lints:
parallel: true
commands:
rubocop:
glob:
- "**/*.{rb,rake,thor}"
- "bin/**/*"
- "Gemfile"
run: bundle exec rubocop
syntax_tree:
exclude:
- "bin/notify_file_change"
- "bin/docker/**/*"
glob:
- "**/*.{rb,rake,thor}"
- "bin/**/*"
- "Gemfile"
run: bundle exec stree check Gemfile {all_files}
prettier:
run: pnpm lint:prettier
eslint:
run: pnpm lint:js
ember-template-lint:
run: pnpm lint:hbs
stylelint:
run: pnpm lint:css
yaml-syntax:
glob: "**/*.{yaml,yml}"
# database.yml is an erb file not a yaml file
exclude: "config/database.yml"
run: bundle exec yaml-lint {all_files}
i18n-lint:
glob: "**/{client,server}.en.yml"
run: bundle exec ruby script/i18n_lint.rb {all_files}
glint:
run: pnpm lint:types