-
Notifications
You must be signed in to change notification settings - Fork 11
/
.pre-commit-config.yaml
48 lines (48 loc) · 1.6 KB
/
.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
40
41
42
43
44
45
46
47
48
################################################################################
# OVERVIEW
################################################################################
# Only check files in ./src
#
# Links:
#
# Pre-commit: https://pre-commit.com/
# Supported hooks: https://github.com/pre-commit/pre-commit-hooks
repos:
################################################################################
# GENERAL
################################################################################
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
# attempts to load all TOML files to
# verify syntax.
- id: check-toml
files: ^src/
# makes sure files end in a newline and
# only a newline.
- id: end-of-file-fixer
files: ^src/
# replaces or checks mixed line ending.
- id: mixed-line-ending
files: ^src/
# trims trailing whitespace.
- id: trailing-whitespace
files: ^src/
################################################################################
# R
################################################################################
- repo: https://github.com/lorenzwalthert/precommit
rev: v0.4.3.9003
hooks:
- id: style-files
args: [--style_pkg=styler, --style_fun=tidyverse_style,
--cache-root=styler-perm]
- id: lintr
files: ^src/
- id: parsable-R
files: ^src/
- id: no-print-statement
files: ^src/
- id: no-debug-statement
files: ^src/
################################################################################