Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
pre-commit-hooks/.pre-commit-hooks.yaml at master · moquality/pre-commit-hooks · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
moquality
/
pre-commit-hooks
Public
forked from
pre-commit/pre-commit-hooks
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
pre-commit-hooks
/
.pre-commit-hooks.yaml
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
149 lines (149 loc) · 5.04 KB
master
Breadcrumbs
pre-commit-hooks
/
.pre-commit-hooks.yaml
Copy path
Top
File metadata and controls
Code
Blame
149 lines (149 loc) · 5.04 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
-
id
:
autopep8-wrapper
name
:
autopep8 wrapper
description
:
"
Runs autopep8 over python source. If you configure additional arguments you'll want to at least include -i.
"
entry
:
autopep8-wrapper
language
:
python
files
:
\.py$
args
:
[-i]
-
id
:
check-added-large-files
name
:
Check for added large files
description
:
Prevent giant files from being committed
entry
:
check-added-large-files
language
:
python
#
Match all files
files
:
'
'
-
id
:
check-ast
name
:
Check python ast
description
:
Simply check whether the files parse as valid python.
entry
:
check-ast
language
:
python
files
:
'
\.py$
'
-
id
:
check-byte-order-marker
name
:
Check for byte-order marker
description
:
Forbid files which have a UTF-8 byte-order marker
entry
:
check-byte-order-marker
language
:
python
files
:
'
\.py$
'
-
id
:
check-case-conflict
name
:
Check for case conflicts
description
:
Check for files that would conflict in case-insensitive filesystems
entry
:
check-case-conflict
language
:
python
#
Match all files
files
:
'
'
-
id
:
check-docstring-first
name
:
Check docstring is first
description
:
Checks a common error of defining a docstring after code.
entry
:
check-docstring-first
language
:
python
files
:
\.py$
-
id
:
check-json
name
:
Check JSON
description
:
This hook checks json files for parseable syntax.
entry
:
check-json
language
:
python
files
:
\.json$
-
id
:
pretty-format-json
name
:
Pretty format JSON
description
:
This hook sets a standard for formatting JSON files.
entry
:
pretty-format-json
language
:
python
files
:
\.json$
-
id
:
check-merge-conflict
name
:
Check for merge conflicts
description
:
Check for files that contain merge conflict strings.
entry
:
check-merge-conflict
language
:
python
#
Match all files
files
:
'
'
-
id
:
check-symlinks
name
:
Check for broken symlinks
description
:
Checks for symlinks which do not point to anything.
entry
:
check-symlinks
language
:
python
#
Match all files
files
:
'
'
-
id
:
check-xml
name
:
Check Xml
description
:
This hook checks xml files for parseable syntax.
entry
:
check-xml
language
:
python
files
:
\.xml$
-
id
:
check-yaml
name
:
Check Yaml
description
:
This hook checks yaml files for parseable syntax.
entry
:
check-yaml
language
:
python
files
:
\.(yaml|yml|eyaml)$
-
id
:
debug-statements
name
:
Debug Statements (Python)
description
:
This hook checks that debug statements (pdb, ipdb, pudb) are not imported on commit.
entry
:
debug-statement-hook
language
:
python
files
:
\.py$
-
id
:
detect-aws-credentials
name
:
Detect AWS Credentials
description
:
Detects *your* aws credentials from the aws cli credentials file
entry
:
detect-aws-credentials
language
:
python
files
:
'
'
-
id
:
detect-private-key
name
:
Detect Private Key
description
:
Detects the presence of private keys
entry
:
detect-private-key
language
:
python
files
:
'
'
-
id
:
double-quote-string-fixer
name
:
Fix double quoted strings
description
:
This hook replaces double quoted strings with single quoted strings
entry
:
double-quote-string-fixer
language
:
python
files
:
\.py$
-
id
:
end-of-file-fixer
name
:
Fix End of Files
description
:
Ensures that a file is either empty, or ends with one newline.
entry
:
end-of-file-fixer
language
:
python
files
:
\.(asciidoc|adoc|coffee|cpp|css|c|ejs|erb|groovy|h|haml|hh|hpp|hxx|html|in|j2|jade|json|js|less|markdown|md|ml|mli|pp|py|rb|rs|R|scala|scss|sh|slim|tex|tmpl|ts|txt|yaml|yml)$
-
id
:
fix-encoding-pragma
name
:
Fix python encoding pragma
language
:
python
entry
:
fix-encoding-pragma
description
:
'
Add # -*- coding: utf-8 -*- to the top of python files
'
files
:
\.py$
-
id
:
flake8
name
:
Flake8
description
:
This hook runs flake8.
entry
:
flake8
language
:
python
files
:
\.py$
-
id
:
forbid-new-submodules
name
:
Forbid new submodules
language
:
python
entry
:
forbid-new-submodules
description
:
Prevent addition of new git submodules
files
:
'
'
-
id
:
name-tests-test
name
:
Tests should end in _test.py
description
:
This verifies that test files are named correctly
entry
:
name-tests-test
language
:
python
files
:
tests/.+\.py$
-
id
:
pyflakes
name
:
Pyflakes (DEPRECATED, use flake8)
description
:
This hook runs pyflakes. (This is deprecated, use flake8).
entry
:
pyflakes
language
:
python
files
:
\.py$
-
id
:
requirements-txt-fixer
name
:
Fix requirements.txt
description
:
Sorts entries in requirements.txt
entry
:
requirements-txt-fixer
language
:
python
files
:
requirements.*\.txt$
-
id
:
trailing-whitespace
name
:
Trim Trailing Whitespace
description
:
This hook trims trailing whitespace.
entry
:
trailing-whitespace-fixer
language
:
python
files
:
\.(asciidoc|adoc|coffee|cpp|css|c|ejs|erb|groovy|h|haml|hh|hpp|hxx|html|in|j2|jade|json|js|less|markdown|md|ml|mli|pp|py|rb|rs|R|scala|scss|sh|slim|tex|tmpl|ts|txt|yaml|yml)$
You can’t perform that action at this time.