Skip to content

Commit

Permalink
Switch default style checker to ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
trampgeek committed Dec 19, 2024
1 parent 8eb69bb commit 8cc695a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python3_files_function/__pystylechecker.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def style_errors(self):
pylint_opts = self.params.get('pylintoptions',[])
ruff_opts = self.params.get('ruffoptions', [])

precheckers = self.params.get('precheckers', ['pylint'])
precheckers = self.params.get('precheckers', ['ruff'])
result = ''

# First try checking with pylint and/or ruff.
Expand Down
2 changes: 1 addition & 1 deletion python3_files_program/__pystylechecker.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def style_errors(self):
pylint_opts = self.params.get('pylintoptions',[])
ruff_opts = self.params.get('ruffoptions', [])

precheckers = self.params.get('precheckers', ['pylint'])
precheckers = self.params.get('precheckers', ['ruff'])
result = ''

# First try checking with pylint and/or ruff.
Expand Down
2 changes: 1 addition & 1 deletion python3_scratchpad/__pystylechecker.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def style_errors(self):
pylint_opts = self.params.get('pylintoptions',[])
ruff_opts = self.params.get('ruffoptions', [])

precheckers = self.params.get('precheckers', ['pylint'])
precheckers = self.params.get('precheckers', ['ruff'])
result = ''

# First try checking with pylint and/or ruff.
Expand Down

0 comments on commit 8cc695a

Please sign in to comment.