Skip to content

Add missing ignore entries to stylelintrc.json #3235

Add missing ignore entries to stylelintrc.json

Add missing ignore entries to stylelintrc.json #3235

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint-editorconfig:
runs-on: ubuntu-latest
name: Lint for editorconfig violations
steps:
- name: Checkout the repository
uses: actions/checkout@v3
# Enablement of https://pre-commit.ci is desirable as it also
# enable auto-fixes for formatting violations. Still we still want to run
# our own GitHub action, just in case the external service becomes
# unavailable.
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install pre-commit
run: |
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade pre-commit
- name: Run pre-commit
run: |
pre-commit run --all-files