Skip to content

Commit

Permalink
ci(noxfile): added ruff format check in lint session
Browse files Browse the repository at this point in the history
  • Loading branch information
lewoudar committed Nov 27, 2023
1 parent e26d6e3 commit d2cfbf4
Show file tree
Hide file tree
Showing 2 changed files with 126 additions and 14 deletions.
1 change: 1 addition & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ def lint(session):
source_code = 'ws'
session.run('poetry', 'install', '--only', 'lint')
session.run('ruff', 'check', source_code)
session.run('ruff', 'format', '.')
session.run('bandit', '-r', source_code)


Expand Down
Loading

0 comments on commit d2cfbf4

Please sign in to comment.