We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaa4cf5 commit 2b2eefeCopy full SHA for 2b2eefe
conda_forge_feedstock_ops/lint.py
@@ -102,9 +102,14 @@ def _lint_local(feedstock_dir):
102
recipe_dir = recipe.parent
103
rel_path = str(recipe.relative_to(feedstock_dir))
104
105
- _lints, _hints = conda_smithy.lint_recipe.main(
106
- str(recipe_dir), conda_forge=True, return_hints=True
107
- )
+ if recipe.name == "recipe.yaml":
+ # this is a v1 recipe and not yet handled
+ _hints = ["This is a v1 recipe and not yet lintable. We are working on it!"]
108
+ _lints = []
109
+ else:
110
+ _lints, _hints = conda_smithy.lint_recipe.main(
111
+ str(recipe_dir), conda_forge=True, return_hints=True
112
+ )
113
114
lints[rel_path] = _lints
115
hints[rel_path] = _hints
0 commit comments