Skip to content

Commit

Permalink
this change setup linter rule for unused variables, fixing the issue v…
Browse files Browse the repository at this point in the history
  • Loading branch information
felipesqf committed Oct 11, 2024
1 parent 4845fd4 commit 075da0a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,10 @@ def _global_version(version):
],
package_data={"vyper.ast": ["grammar.lark"]},
data_files=[("", [hash_file_rel_path])],
# Add linter configuration for flake8
options={
"flake8": {
"select": "F401",
}
}
)

0 comments on commit 075da0a

Please sign in to comment.