Skip to content

Commit

Permalink
Use ruff to lint codebase instead of SuperLinter
Browse files Browse the repository at this point in the history
  • Loading branch information
johannaengland committed Nov 19, 2024
1 parent cce3ff4 commit 6fd8c82
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 47 deletions.
54 changes: 7 additions & 47 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -1,59 +1,19 @@
---
#################################
#################################
## Super Linter GitHub Actions ##
#################################
#################################
name: Lint Code Base

######################################################
# Start the job on all push and pull request to main #
######################################################
on:
push:
branches: main
pull_request:

###############
# Set the Job #
###############
jobs:
build:
# Name the Job
format:
name: Lint Code Base
# Set the agent to run on
runs-on: ubuntu-latest

############################################
# Grant status permission for MULTI_STATUS #
############################################
permissions:
contents: read
packages: read
statuses: write

##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper
# list of changed files within `super-linter`
fetch-depth: 0
- uses: actions/checkout@v4

################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: github/super-linter/slim@v6
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Add validation for other languages here or comment out all to validate all languages
VALIDATE_PYTHON_FLAKE8: true
- name: Lint
uses: astral-sh/ruff-action@v1
with:
args: "format --check"
# changed-files: 'true'
10 changes: 10 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,13 @@ include = [

[tool.setuptools_scm]
write_to = "src/zinolib/version.py"

[tool.ruff]
extend-exclude = [
"examples",
"tests",
]
output-format = "full"

[tool.ruff.lint]
select = ["E9", "F63", "F7", "F82"]

0 comments on commit 6fd8c82

Please sign in to comment.