feat(tool): include tooling to track excluded lint rules and their reasons #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: linter_rules (tool) | |
on: pull_request | |
jobs: | |
build: | |
defaults: | |
run: | |
working-directory: tool/linter_rules | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📚 Git Checkout | |
uses: actions/checkout@v4 | |
- name: 🎯 Setup Dart | |
uses: dart-lang/setup-dart@v1 | |
with: | |
sdk: 3.4.0 | |
- name: 📦 Install Dependencies | |
run: dart pub get | |
- name: ✨ Check Formatting | |
run: dart format --line-length 80 --set-exit-if-changed . | |
- name: 🕵️ Analyze | |
run: dart analyze --fatal-infos --fatal-warnings |