-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from bskinn/release-1.0.0.2
Release 1.0.0.2 back-merge, post release
- Loading branch information
Showing
10 changed files
with
87 additions
and
31 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,8 +1,16 @@ | ||
Credits | ||
======= | ||
|
||
`flake8-absolute-import` is authored and maintained by Brian Skinn ([Blog](https://bskinn.github.io)) ([Twitter](https://twitter.com/btskinn)). The skeleton of the AST-based implementation used for this plugin was shamelessly swiped from [`flake8-2020`](https://github.com/asottile/flake8-2020) by [Anthony Sottile](https://github.com/asottile). | ||
`flake8-absolute-import` is authored and maintained by Brian Skinn | ||
([Blog](https://bskinn.github.io)) ([Twitter](https://twitter.com/btskinn)). The | ||
skeleton of the AST-based implementation used for this plugin was shamelessly | ||
swiped from [`flake8-2020`](https://github.com/asottile/flake8-2020) by | ||
[Anthony Sottile](https://github.com/asottile). | ||
|
||
While there is disagreement about the upsides and downsides of relative imports in Python, as best this author can tell there are numerous projects and developers out there who desire to hold strictly to absolute imports in their code. The goal of this flake8 plugin is to simplify enforcement of this policy. | ||
While there is disagreement about the upsides and downsides of relative imports | ||
in Python, as best this author can tell there are numerous projects and | ||
developers out there who desire to hold strictly to absolute imports in their | ||
code. The goal of this flake8 plugin is to simplify enforcement of this policy. | ||
|
||
v1.0 provides a single catch-all error, `ABS101`, raised on any relative imports found. | ||
v1.0 provides a single catch-all error, `ABS101`, raised on any relative imports | ||
found. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,13 @@ | |
flake8 plugin to require absolute imports | ||
**Author** | ||
Brian Skinn ([email protected]) | ||
Brian Skinn ([email protected]) | ||
**File Created** | ||
6 Sep 2019 | ||
**Copyright** | ||
\(c) Brian Skinn 2019-2021 | ||
\(c) Brian Skinn 2019-2023 | ||
**Source Repository** | ||
http://github.com/bskinn/flake8-absolute-import | ||
|
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 |
---|---|---|
|
@@ -3,13 +3,13 @@ | |
flake8 plugin to require absolute imports | ||
**Author** | ||
Brian Skinn ([email protected]) | ||
Brian Skinn ([email protected]) | ||
**File Created** | ||
6 Sep 2019 | ||
**Copyright** | ||
\(c) Brian Skinn 2019-2021 | ||
\(c) Brian Skinn 2019-2023 | ||
**Source Repository** | ||
http://github.com/bskinn/flake8-absolute-import | ||
|
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 |
---|---|---|
|
@@ -3,13 +3,13 @@ | |
flake8 plugin to require absolute imports | ||
**Author** | ||
Brian Skinn ([email protected]) | ||
Brian Skinn ([email protected]) | ||
**File Created** | ||
6 Sep 2019 | ||
**Copyright** | ||
\(c) Brian Skinn 2019-2021 | ||
\(c) Brian Skinn 2019-2023 | ||
**Source Repository** | ||
http://github.com/bskinn/flake8-absolute-import | ||
|
@@ -21,4 +21,4 @@ | |
""" | ||
|
||
__version__ = "1.0.1.dev0" | ||
__version__ = "1.0.0.3.dev0" |
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 |
---|---|---|
|
@@ -3,13 +3,13 @@ | |
flake8 plugin to require absolute imports | ||
**Author** | ||
Brian Skinn ([email protected]) | ||
Brian Skinn ([email protected]) | ||
**File Created** | ||
6 Sep 2019 | ||
**Copyright** | ||
\(c) Brian Skinn 2019-2021 | ||
\(c) Brian Skinn 2019-2023 | ||
**Source Repository** | ||
http://github.com/bskinn/flake8-absolute-import | ||
|