-
Notifications
You must be signed in to change notification settings - Fork 16k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
repos: | ||
- repo: local | ||
hooks: | ||
- id: core | ||
name: format core | ||
language: system | ||
entry: make -C libs/core format | ||
files: ^libs/core/(langchain_core|tests)/ | ||
pass_filenames: false | ||
- id: community | ||
name: format community | ||
language: system | ||
entry: make -C libs/community format | ||
files: ^libs/community/(langchain_community|tests)/ | ||
pass_filenames: false | ||
- id: langchain | ||
name: format langchain | ||
language: system | ||
entry: make -C libs/langchain format | ||
files: ^libs/langchain/(langchain|tests)/ | ||
pass_filenames: false | ||
- id: standard-tests | ||
name: format standard-tests | ||
language: system | ||
entry: make -C libs/standard-tests format | ||
files: ^libs/standard-tests/(langchain_standard_tests|tests)/ | ||
pass_filenames: false | ||
- id: text-splitters | ||
name: format text-splitters | ||
language: system | ||
entry: make -C libs/text-splitters format | ||
files: ^libs/text-splitters/(langchain_text_splitters|tests)/ | ||
pass_filenames: false |