12 lines
340 B
Bash
Executable File
12 lines
340 B
Bash
Executable File
#!/bin/sh
|
|
#------------------------------------------------------------------------------
|
|
# written by: mcdaniel
|
|
# https://lawrencemcdaniel.com
|
|
#
|
|
# date: mar-2022
|
|
#
|
|
# usage: run all pre-commit checks.
|
|
#------------------------------------------------------------------------------
|
|
|
|
pre-commit run --all-files
|