Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove dormant (broken) nitpick config #1084

Merged
merged 1 commit into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,6 @@

import globus_sdk

# running `tox -e docs -- -n` will pick up "nitpick" warning which we convert to build
# errors with `-W`
# load ignores from file
nitpick_ignore = []
nitpick_ignore_regex = []
with open("nitpick_ignore.txt") as fp:
for line in fp:
line = line.strip()
if line == "" or line.startswith("#"):
continue
if line.startswith("re: "):
nitpick_ignore_regex.append(tuple(line.split()[1:]))
else:
nitpick_ignore.append(tuple(line.split()))

intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
}
Expand Down
35 changes: 0 additions & 35 deletions docs/nitpick_ignore.txt

This file was deleted.

Loading