-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.restyled.yaml
57 lines (44 loc) · 1.15 KB
/
.restyled.yaml
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
# Restyled Configuration
# For more advanced documentation see:
# https://github.com/restyled-io/restyler/blob/master/config/default.yaml
# Do anything at all
enabled: true
# Patterns to exclude from all Restylers
exclude:
- ".github/workflows/**/*" # https://github.com/restyled-io/restyler/issues/73
# Push the style fixes directly to the original PR
auto: false
# Download remote files before restyling
remote_files: []
# Open Restyle PRs?
pull_requests: true
# Leave comments on the original PR linking to the Restyle PR?
comments: false
# Set commit statuses
statuses:
differences: true
no_differences: true
error: true
# Request review on the Restyle PR
request_review: author
# Add labels to any created Restyle PRs
labels:
- restyled
# Labels to ignore
ignore_labels:
- restyled-ignore
# Version of the set of Restylers to run
restylers_version: "20200331"
# Restylers to run, and how
restylers:
- name: dotnet-format
enabled: true
image: restyled/restyler-dotnet-format:v0.0.1-2
command:
- dotnet-format-files
- "--folder ."
arguments: []
include:
- "**/*.cs"
- "**/*.vb"
interpreters: []