-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat/issue 200/order of operations (#244)
* refactor: simplify op priority logic * chore: bump development to py3.10, fix warnings * fix: do not treat square brackets as standalone operators (regression from prev commit) * refactor: create OperatorPrecedence enum and tiers * feat: parse more operators into specific tiers * fix #207: between's and now a tight word operator * feat: add more granular operator precedence, close #200 * chore: update changelog and readme * chore: bump primer refs * fix: fix bugs in op precedence, improve test coverage * fix: update primer stats for dbt-utils
- Loading branch information
Showing
18 changed files
with
394 additions
and
117 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
3.9.7 | ||
3.8.13 | ||
3.7.12 | ||
3.10.3 | ||
3.8.13 | ||
3.9.13 | ||
3.10.6 |
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ description = "sqlfmt is an opinionated CLI tool that formats your sql files" | |
readme = "README.md" | ||
authors = ["Ted Conbeer <[email protected]>"] | ||
license = "Apache-2.0" | ||
homepage = "http://sqlfmt.com" | ||
homepage = "https://sqlfmt.com" | ||
repository = "https://github.com/tconbeer/sqlfmt" | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
|
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
Oops, something went wrong.