Skip to content

Commit

Permalink
Deployed to github pages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 27, 2023
1 parent ac7a9a7 commit 83dfb65
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 0 deletions.
63 changes: 63 additions & 0 deletions all-hooks.json
Original file line number Diff line number Diff line change
Expand Up @@ -5359,6 +5359,69 @@
]
}
],
"https://github.com/sirosen/texthooks": [
{
"id": "fix-smartquotes",
"name": "Fix smartquote characters",
"description": "Replace \"smartquote\" characters with regular quotes",
"entry": "fix-smartquotes",
"language": "python",
"types": [
"text"
]
},
{
"id": "fix-ligatures",
"name": "Fix ligature characters with NFKD normalization",
"description": "Replace ligature characters with normalized individual characters",
"entry": "fix-ligatures",
"language": "python",
"types": [
"text"
]
},
{
"id": "fix-spaces",
"name": "Normalize irregular space characters to \"space\"",
"description": "Replace non-breaking spaces and other characters with the standard space character",
"entry": "fix-spaces",
"language": "python",
"types": [
"text"
]
},
{
"id": "forbid-bidi-controls",
"name": "Forbid the use of unicode BiDi control characters",
"description": "Check for lines of text which contain bidirectional text control characters",
"entry": "forbid-bidi-controls",
"language": "python",
"types": [
"text"
]
},
{
"id": "macro-expand",
"name": "Expand text macros",
"description": "Perform simple macro replacements in text files",
"entry": "macro-expand",
"language": "python",
"types": [
"text"
]
},
{
"id": "alphabetize-codeowners",
"name": "Alphabetize Codeowners",
"description": "Alphabetize GitHub CODEOWNERS files to list owners in the same order",
"entry": "alphabetize-codeowners",
"language": "python",
"types": [
"text"
],
"files": "^(CODEOWNERS|\\.github/CODEOWNERS|docs/CODEOWNERS)$"
}
],
"https://github.com/snok/pep585-upgrade": [
{
"id": "upgrade-type-hints",
Expand Down
31 changes: 31 additions & 0 deletions hooks.html
Original file line number Diff line number Diff line change
Expand Up @@ -3046,6 +3046,37 @@ <h3 data-repo="https://github.com/python-jsonschema/check-jsonschema">
- Validate Travis Config against the schema provided by SchemaStore
</li>
</ul>
<h3 data-repo="https://github.com/sirosen/texthooks">
<a href="https://github.com/sirosen/texthooks" target="_blank">
github.com/sirosen/texthooks
</a>
</h3>
<ul data-repo="https://github.com/sirosen/texthooks">
<li data-id="fix-smartquotes" data-types="text">
<code>fix-smartquotes</code>
- Replace &#34;smartquote&#34; characters with regular quotes
</li>
<li data-id="fix-ligatures" data-types="text">
<code>fix-ligatures</code>
- Replace ligature characters with normalized individual characters
</li>
<li data-id="fix-spaces" data-types="text">
<code>fix-spaces</code>
- Replace non-breaking spaces and other characters with the standard space character
</li>
<li data-id="forbid-bidi-controls" data-types="text">
<code>forbid-bidi-controls</code>
- Check for lines of text which contain bidirectional text control characters
</li>
<li data-id="macro-expand" data-types="text">
<code>macro-expand</code>
- Perform simple macro replacements in text files
</li>
<li data-id="alphabetize-codeowners" data-types="text">
<code>alphabetize-codeowners</code>
- Alphabetize GitHub CODEOWNERS files to list owners in the same order
</li>
</ul>
<h3 data-repo="https://github.com/snok/pep585-upgrade">
<a href="https://github.com/snok/pep585-upgrade" target="_blank">
github.com/snok/pep585-upgrade
Expand Down

0 comments on commit 83dfb65

Please sign in to comment.