blob: 937a8b4afa2a53e9a64fa182135c60e4d5df5917 [file] [log] [blame]
Robert Szewczyk38cf7312020-06-29 09:07:49 -07001#
2# Copyright (c) 2020 Project CHIP Authors
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
Justin Wood0c46b2e2020-04-17 14:20:48 -070017# Do anything at all
18enabled: true
19
20# Push the style fixes directly to the original PR
21auto: false
22
23# Open Restyle PRs?
24pull_requests: true
25
26# Add labels to any created Restyle PRs
27labels:
28 - restyled
29
30# Labels to ignore
31ignore_labels:
32 - restyled-ignore
33
34# Leave comments on the original PR linking to the Restyle PR?
35comments: false
36
37# Request review on the Restyle PR
38request_review: none
39
40# Patterns to exclude from all Restylers
41exclude:
42 - ".github/workflows/**/*" # https://github.com/restyled-io/restyler/issues/73
Vivien Nicolasdd625452020-07-09 04:56:45 +020043 - ".github/workflows/*" # https://github.com/restyled-io/restyler/issues/73
44 - ".github/**/*" # https://github.com/restyled-io/restyler/issues/73
45 - ".github/*" # https://github.com/restyled-io/restyler/issues/73
Boris Zbarsky775b2b12020-09-11 11:06:36 -040046 - "*/**/third_party/*" # https://github.com/restyled-io/restyled.io/issues/213
47 - "*/**/third_party/**" # https://github.com/restyled-io/restyled.io/issues/213
48 - "*/**/third_party/**/*" # https://github.com/restyled-io/restyled.io/issues/213
Rob Walker085b3d02020-09-08 14:11:59 -070049 - "third_party/android/**/*"
50 - "third_party/inipp/repo/**/*"
51 - "third_party/jlink/**/*"
52 - "third_party/lwip/repo/**/*"
53 - "third_party/nlbuild-autotools/repo/**/*"
54 - "third_party/nlbuild-autotools/repo/.**/*" # "**/*" doesn't include directories that start with "."
55 - "third_party/nlassert/repo/**/*" # from here down built with $ awk '/path =/ {print $3 "/**/*"}' .gitmodules
56 - "third_party/nlfaultinjection/repo/**/*"
57 - "third_party/nlio/repo/**/*"
58 - "third_party/nlunit-test/repo/**/*"
59 - "third_party/mbedtls/repo/**/*"
60 - "examples/common/QRCode/repo/**/*"
61 - "examples/common/m5stack-tft/repo/**/*"
62 - "third_party/pigweed/repo/**/*"
63 - "third_party/openthread/repo/**/*"
64 - "third_party/ot-br-posix/repo/**/*"
65 - "third_party/bluez/repo/**/*"
Rob Walker085b3d02020-09-08 14:11:59 -070066 - "third_party/cirque/repo/**/*"
szatmzf44fb762020-10-19 18:36:24 -040067 - "third_party/nanopb/repo/**/*"
Andrei Litvin57522052021-08-16 12:24:20 -040068 - "src/android/CHIPTool/gradlew" # gradle wrapper generated file
Austin Hsieh77a9f6a2021-09-28 16:30:16 -070069 - "third_party/android_deps/gradlew" # gradle wrapper generated file
Jerry Johnsbb608352021-12-06 11:01:02 -080070 - "src/controller/python/chip/clusters/Objects.py" # generated file, no point to restyle
71 - "src/controller/python/chip/clusters/CHIPClusters.py" # generated file, no point to restyle
Andrei Litvin7f358b62022-01-24 12:25:12 -050072 - "scripts/idl/tests/outputs/**/*" # Matches generated output 1:1
cpagravelbc5e79c2022-06-10 07:08:50 -070073 - "examples/chef/sample_app_util/test_files/*.yaml"
Austin Bozowski4a83d6f2022-06-06 15:13:07 -070074 - "examples/chef/zzz_generated/**/*"
Rob Walker085b3d02020-09-08 14:11:59 -070075
76
77changed_paths:
78 maximum: 100000
79 outcome: error
Justin Wood0c46b2e2020-04-17 14:20:48 -070080
81# Restylers to run, and how
82restylers:
Rob Walker5a9f46d2020-05-26 14:32:28 -070083 - name: whitespace
84 enabled: true
Rob Walker085b3d02020-09-08 14:11:59 -070085 image: restyled/restyler-whitespace:v0.1.0.1
Rob Walker5a9f46d2020-05-26 14:32:28 -070086 command:
87 - whitespace
88 arguments: []
89 include:
Rob Walker84781242020-06-03 18:15:33 -070090 - "**/Dockerfile"
Rob Walker085b3d02020-09-08 14:11:59 -070091 - ".**/Dockerfile"
Rob Walkerafdc90d2020-06-03 20:07:26 -070092 - "**/*.yml"
93 - "**/*.yaml"
Rob Walker085b3d02020-09-08 14:11:59 -070094 - ".**/*.yml"
95 - ".**/*.yaml"
Rob Walker84781242020-06-03 18:15:33 -070096 - "**/*.sh"
Rob Walker5a9f46d2020-05-26 14:32:28 -070097 - "**/*.c"
98 - "**/*.cc"
99 - "**/*.cpp"
100 - "**/*.cxx"
101 - "**/*.c++"
102 - "**/*.C"
103 - "**/*.cs"
104 - "**/*.h"
105 - "**/*.hh"
106 - "**/*.hpp"
107 - "**/*.hxx"
108 - "**/*.h++"
109 - "**/*.H"
110 - "**/*.java"
111 - "**/*.js"
Rob Walkerafdc90d2020-06-03 20:07:26 -0700112 - "**/*.json"
Rob Walker085b3d02020-09-08 14:11:59 -0700113 - ".**/*.js"
114 - ".**/*.json"
Rob Walker5a9f46d2020-05-26 14:32:28 -0700115 - "**/*.m"
116 - "**/*.mm"
randyrossic4964e32020-06-23 19:14:03 -0400117 - name: google-java-format
118 enabled: true
Austin Hsiehac2a2e62021-06-17 16:19:11 -0700119 # Update https://github.com/project-chip/connectedhomeip/blob/master/scripts/tools/zap/generate.py if this version changes.
randyrossic4964e32020-06-23 19:14:03 -0400120 image: restyled/restyler-google-java-format:v1.6
121 command:
122 - google-java-format
123 - "--replace"
124 arguments: []
125 include:
126 - "**/*.java"
127 interpreters: []
Justin Wood0c46b2e2020-04-17 14:20:48 -0700128 - name: clang-format
129 enabled: true
130 image: restyled/restyler-clang-format:v9.0.0
131 command:
132 - clang-format
133 - "-i"
134 arguments: []
135 include:
136 - "**/*.c"
137 - "**/*.cc"
138 - "**/*.cpp"
139 - "**/*.cxx"
140 - "**/*.c++"
141 - "**/*.C"
142 - "**/*.cs"
143 - "**/*.h"
144 - "**/*.hh"
145 - "**/*.hpp"
146 - "**/*.hxx"
147 - "**/*.h++"
148 - "**/*.H"
Justin Wood0c46b2e2020-04-17 14:20:48 -0700149 - "**/*.js"
150 - "**/*.m"
Rob Walker5a9f46d2020-05-26 14:32:28 -0700151 - "**/*.mm"
Justin Wood0c46b2e2020-04-17 14:20:48 -0700152 interpreters: []
Michael Spang65dd6512020-08-18 12:07:01 -0400153 - name: gn
154 image: restyled/restyler-gn:v1
155 enabled: true
156 include:
157 - "**/*.gn"
158 - "**/*.gni"
Justin Wood0a9545e2020-04-20 18:15:21 -0700159 - name: prettier-json
160 image: restyled/restyler-prettier:v1.19.1-2
Justin Wood0c46b2e2020-04-17 14:20:48 -0700161 enabled: true
Justin Wood0a9545e2020-04-20 18:15:21 -0700162 command:
163 - prettier
164 - "--write"
165 arguments: []
Justin Wood0c46b2e2020-04-17 14:20:48 -0700166 include:
167 - "**/*.json"
Rob Walker085b3d02020-09-08 14:11:59 -0700168 - ".**/*.json"
Justin Wood0a9545e2020-04-20 18:15:21 -0700169 interpreters: []
Justin Wood0c46b2e2020-04-17 14:20:48 -0700170 - name: prettier-markdown
Justin Wood0a9545e2020-04-20 18:15:21 -0700171 image: restyled/restyler-prettier:v1.19.1-2
172 command:
173 - prettier
174 - "--write"
175 arguments: []
Justin Wood0c46b2e2020-04-17 14:20:48 -0700176 enabled: true
177 include:
178 - "**/*.md"
179 - "**/*.markdown"
180 - name: prettier-yaml
Justin Wood0a9545e2020-04-20 18:15:21 -0700181 image: restyled/restyler-prettier:v1.19.1-2
Justin Wood0c46b2e2020-04-17 14:20:48 -0700182 enabled: true
183 include:
184 - "**/*.yml"
185 - "**/*.yaml"
186 - name: shellharden
Justin Wood0a9545e2020-04-20 18:15:21 -0700187 image: restyled/restyler-shellharden:v4.1.1-2
Justin Wood0c46b2e2020-04-17 14:20:48 -0700188 enabled: true
189 include:
190 - "**/*.sh"
191 - "**/*.bash"
192 - name: shfmt
Justin Wood0a9545e2020-04-20 18:15:21 -0700193 image: restyled/restyler-shfmt:v3.0.1
Justin Wood0c46b2e2020-04-17 14:20:48 -0700194 enabled: true
Justin Wooda923ce72020-05-13 18:59:48 -0700195 command:
196 - shfmt
197 - "-w"
198 arguments:
199 - "-i"
200 - "4"
201 - "-ci"
202 interpreters:
203 - sh
204 - bash
Justin Wood0c46b2e2020-04-17 14:20:48 -0700205 include:
206 - "**/*.sh"
207 - "**/*.bash"
Song GUOf0315002021-08-12 23:31:58 +0800208 - name: autopep8
209 image: 'restyled/restyler-autopep8:v1.5.7'
210 command:
211 - autopep8
212 - '--in-place'
213 arguments: []
214 include:
215 - '**/*.py'
216 interpreters:
217 - python