OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2016 The Chromium Authors. All rights reserved. | |
dgozman
2016/10/25 21:48:13
no (c)
kozy
2016/10/25 23:23:57
Done.
| |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 # Watchlist Rules | |
6 # Refer: http://dev.chromium.org/developers/contributing-code/watchlists | |
7 | |
8 # IMPORTANT: The regular expression filepath is tested against each path using | |
9 # re.search, so it is not usually necessary to add .*. | |
10 { | |
11 'WATCHLIST_DEFINITIONS': { | |
12 'devtools': { | |
13 'filepath': '.*', | |
14 }, | |
15 }, | |
16 'WATCHLISTS': { | |
17 'devtools': ['devtools-reviews@chromium.org'] | |
18 }, | |
19 } | |
OLD | NEW |