1# Copyright 2021 Google LLC
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14#
15# See https://pre-commit.com for more information
16# See https://pre-commit.com/hooks.html for more hooks
17repos:
18-   repo: https://github.com/pre-commit/pre-commit-hooks
19    rev: v4.0.1
20    hooks:
21    -   id: trailing-whitespace
22    -   id: end-of-file-fixer
23    -   id: check-yaml
24-   repo: https://github.com/psf/black
25    rev: 19.10b0
26    hooks:
27    - id: black
28-   repo: https://gitlab.com/pycqa/flake8
29    rev: 3.9.2
30    hooks:
31    - id: flake8
32