Skip to content

Commit

Permalink
Merge pull request #273 from lsst/tickets/DM-46034
Browse files Browse the repository at this point in the history
DM-46034: Add another Ruff exclusion for Alembic
  • Loading branch information
rra authored Sep 12, 2024
2 parents 86aa64d + b97c734 commit 9588bfa
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ select = ["ALL"]
[lint.per-file-ignores]
"alembic/**" = [
"INP001", # Alembic files are magical
"D103", # Alembic methods do not need docstrings
"D400", # Alembic migrations have their own docstring format
]
"noxfile.py" = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ select = ["ALL"]
[lint.per-file-ignores]
"alembic/**" = [
"INP001", # Alembic files are magical
"D103", # Alembic methods do not need docstrings
"D400", # Alembic migrations have their own docstring format
]
"noxfile.py" = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ select = ["ALL"]
[lint.per-file-ignores]
"alembic/**" = [
"INP001", # Alembic files are magical
"D103", # Alembic methods do not need docstrings
"D400", # Alembic migrations have their own docstring format
]
"noxfile.py" = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ select = ["ALL"]
[lint.per-file-ignores]
"alembic/**" = [
"INP001", # Alembic files are magical
"D103", # Alembic methods do not need docstrings
"D400", # Alembic migrations have their own docstring format
]
"noxfile.py" = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ select = ["ALL"]
[lint.per-file-ignores]
"alembic/**" = [
"INP001", # Alembic files are magical
"D103", # Alembic methods do not need docstrings
"D400", # Alembic migrations have their own docstring format
]
"noxfile.py" = [
Expand Down
2 changes: 1 addition & 1 deletion project_templates/technote_md/testn-000/technote.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ series_id = "TESTN"
canonical_url = "https://testn-000.lsst.io"
github_url = "https://github.com/lsst/testn-000"
github_default_branch = "main"
date_created = 2024-09-12T17:26:16Z
date_created = 2024-09-12T19:04:13Z
organization.name = "Vera C. Rubin Observatory"
organization.ror = "https://ror.org/048g3cy84"
license.id = "CC-BY-4.0"
Expand Down
2 changes: 1 addition & 1 deletion project_templates/technote_rst/testn-000/technote.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ series_id = "TESTN"
canonical_url = "https://testn-000.lsst.io"
github_url = "https://github.com/lsst/testn-000"
github_default_branch = "main"
date_created = 2024-09-12T17:26:16Z
date_created = 2024-09-12T19:04:13Z
organization.name = "Vera C. Rubin Observatory"
organization.ror = "https://ror.org/048g3cy84"
license.id = "CC-BY-4.0"
Expand Down

0 comments on commit 9588bfa

Please sign in to comment.