forked from cdklabs/cdk-nag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
39 lines (39 loc) · 1001 Bytes
/
.pre-commit-config.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
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: check-json
- id: trailing-whitespace
exclude: ^API.md||.github/$
- repo: https://github.com/pre-commit/mirrors-eslint
rev: v7.31.0
hooks:
- id: eslint
files: \.[jt]sx?$
types: [file]
- repo: https://github.com/pre-commit/mirrors-prettier
rev: 'v2.3.2'
hooks:
- id: prettier
exclude: |
(?x)(
^.github/|
^.projen/|
^.mergify.yml|
^.*.json |
^API.md
)
- repo: https://github.com/dontirun/text-prepender
rev: v0.1.0
hooks:
- id: text-prepender
exclude: |
(?x)(
^.github/|
^.projen/|
^.mergify.yml|
^.*.json |
^API.md
)