Arrcttacsrks commited on
Commit
98f4375
1 Parent(s): bf2fbca

Upload llama.cpp/.pre-commit-config.yaml with huggingface_hub

Browse files
Files changed (1) hide show
  1. llama.cpp/.pre-commit-config.yaml +16 -0
llama.cpp/.pre-commit-config.yaml ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # See https://pre-commit.com for more information
2
+ # See https://pre-commit.com/hooks.html for more hooks
3
+ exclude: prompts/.*.txt
4
+ repos:
5
+ - repo: https://github.com/pre-commit/pre-commit-hooks
6
+ rev: v4.6.0
7
+ hooks:
8
+ - id: trailing-whitespace
9
+ - id: end-of-file-fixer
10
+ - id: check-yaml
11
+ - id: check-added-large-files
12
+ - repo: https://github.com/PyCQA/flake8
13
+ rev: 7.0.0
14
+ hooks:
15
+ - id: flake8
16
+ additional_dependencies: [flake8-no-print]