mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-04-29 04:03:52 +00:00
Adding pre-commit files GitHub actions, and Python 3 on Travis Fix missing pip Adding pre-commit instructions Using bionic Fix Drop extra parts, add pip Setuptools
28 lines
554 B
YAML
28 lines
554 B
YAML
|
|
repos:
|
|
- repo: https://github.com/psf/black
|
|
rev: 19.3b0
|
|
hooks:
|
|
- id: black
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v2.3.0
|
|
hooks:
|
|
- id: check-added-large-files
|
|
- id: mixed-line-ending
|
|
- id: trailing-whitespace
|
|
- id: check-merge-conflict
|
|
- id: check-case-conflict
|
|
- id: check-symlinks
|
|
- id: check-yaml
|
|
- repo: local
|
|
hooks:
|
|
- id: docker-clang-format
|
|
name: Docker Clang Format
|
|
language: docker_image
|
|
types:
|
|
- c++
|
|
entry: unibeautify/clang-format:latest
|
|
args:
|
|
- -style=file
|
|
- -i
|