-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [BREAKING CHANGES] Drop `libcst`. Drop argument `beauty`. Drop `BeautyFluentSerializer` Add use of `ast` (built-in python lib) Add arguments `ignore_attributes` & `expand_ignore_attributes` Add time measurements Fix non-Junk objects commenting Fix leave_as_is path sorting Rewrite tests Update dependencies
- Loading branch information
Showing
13 changed files
with
461 additions
and
331 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from __future__ import annotations | ||
|
||
from typing import Literal | ||
|
||
I18N_LITERAL: Literal["i18n"] = "i18n" | ||
GET_LITERAL: Literal["get"] = "get" | ||
PATH_LITERAL: Literal["_path"] = "_path" | ||
IGNORE_ATTRIBUTES: frozenset[str] = frozenset( | ||
{"set_locale", "use_locale", "use_context", "set_context"} | ||
) |
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
Oops, something went wrong.