Skip to content

npm: bump stylelint-scss from 3.21.0 to 5.1.0 #137

npm: bump stylelint-scss from 3.21.0 to 5.1.0

npm: bump stylelint-scss from 3.21.0 to 5.1.0 #137

Workflow file for this run

name: Run linters
on:
workflow_dispatch:
push:
env:
MAX_LINE_LENGTH: 110
jobs:
lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: true
fetch-depth: 1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.9
architecture: x64
- name: Install flake8
run: |
pip install flake8 pycodestyle
- name: Lint with flake8
run: |
# one pass for show-stopper syntax errors or undefined names
flake8 . --count --show-source --statistics
# flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude ./ckan/include/rjsmin.py,./contrib/cookiecutter/*
# one pass for small stylistic things
flake8 . --count --max-line-length="$MAX_LINE_LENGTH" --statistics
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics