We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3d59b2 commit 6954447Copy full SHA for 6954447
doc/conf.py
@@ -138,7 +138,7 @@
138
# General information about the project
139
year = datetime.date.today().year
140
project = "PyGMT"
141
-copyright = f"2017-{year}, The PyGMT Developers"
+copyright = f"2017-{year}, The PyGMT Developers" # noqa: A001
142
if len(__version__.split("+")) > 1 or __version__ == "unknown":
143
version = "dev"
144
# Set base_url for stable version
pyproject.toml
@@ -99,6 +99,7 @@ line-ending = "lf" # Use UNIX `\n` line endings for all files
99
100
[tool.ruff.lint]
101
select = [
102
+ "A", # flake8-builtins
103
"B", # flake8-bugbear
104
"BLE", # flake8-blind-except
105
"E", # pycodestyle
0 commit comments