forked from open-source-uc/ramos-uc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
28 lines (27 loc) · 1006 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
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
# Elimina espacios o tabs innecesarios al final de las lineas
- id: trailing-whitespace
# Elimina terminaciones conflictivas entre Windows y UNIX (CRLF y LF)
- id: mixed-line-ending
# Arregla archivos sin una linea nueva final
- id: end-of-file-fixer
# Revisa que los archivos de YAML sean válidos
- id: check-yaml
# Advierte antes de commitear archivos gigantes
- id: check-added-large-files
# Verifica que los archivos de Python tengan una sintaxis válida
- id: check-ast
# Verifica que no hayan líneas de un merge incompleto
- id: check-merge-conflict
#
- repo: https://github.com/psf/black
rev: 22.6.0
hooks:
# Revisa que el código esté en formato Black
- id: black
name: "Format with black"