comicfn2dict/bin/fix-lint-backend.sh

26 lines
540 B
Bash
Raw Normal View History

2023-12-21 13:04:52 -08:00
#!/bin/bash
# Fix common linting errors
set -euxo pipefail
################
# Ignore files #
################
bin/sortignore.sh
####################
###### Python ######
###################
poetry run ruff --fix .
poetry run ruff format .
# poetry run djlint templates --profile=django --reformat
############################################
##### Javascript, JSON, Markdown, YAML #####
############################################
npm run fix
###################
###### Shell ######
###################
shellharden --replace ./**/*.sh