-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: create industrial_language category
- Loading branch information
1 parent
bc1a7c2
commit 3cadd03
Showing
8 changed files
with
37 additions
and
20 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,25 @@ | ||
"""Industrial language.""" | ||
|
||
from proselint.checks.industrial_language.airlinese import ( | ||
__register__ as register_airlinese, | ||
) | ||
from proselint.checks.industrial_language.bureaucratese import ( | ||
__register__ as register_bureaucratese, | ||
) | ||
from proselint.checks.industrial_language.chatspeak import ( | ||
__register__ as register_chatspeak, | ||
) | ||
from proselint.checks.industrial_language.commercialese import ( | ||
__register__ as register_commercialese, | ||
) | ||
from proselint.checks.industrial_language.jargon import ( | ||
__register__ as register_jargon, | ||
) | ||
|
||
__register__ = ( | ||
*register_airlinese, | ||
*register_bureaucratese, | ||
*register_chatspeak, | ||
*register_commercialese, | ||
*register_jargon, | ||
) |
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
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
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
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
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
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
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