We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2103b92 commit 1fa67b9Copy full SHA for 1fa67b9
packages/gapic-generator/noxfile.py
@@ -717,6 +717,15 @@ def lint(session):
717
Returns a failure if the linters find linting errors or sufficiently
718
serious code quality issues.
719
"""
720
+
721
+ # SKIP: This session was not enforced in the standalone (split) repo
722
+ # and is disabled here to ensure a "move-only" migration.
723
+ # See: https://github.com/googleapis/google-cloud-python/issues/16186
724
+ session.skip(
725
+ "Linting was not enforced in the split repo. "
726
+ "Skipping now to avoid changing code during migration. See Issue #16186"
727
+ )
728
729
session.install("flake8", RUFF_VERSION)
730
731
# 2. Check formatting
0 commit comments