FLUTTER ECOSYSTEM

solid-software/solid_lints

🟧 소프트웨어 산업 표준 및 최선의 실천 방법을 기반으로 한 Dart 및 Flutter용 린트

solid_lints 프로젝트 이미지
Stars
42
Forks
24
최근 푸시(UTC)
2026. 9. 10.
프로젝트 상태
활성
Solid Software GitHub avatar
GITHUB Organization

Solid Software ↗

United States of America공식 웹사이트 ↗
언어Dart

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 11 개
  • analyzer^14.1.0
  • collection^1.19.1
  • analysis_server_plugin^0.3.20
  • equatable^2.1.0
  • glob^2.1.3
  • path^1.9.1
  • yaml^3.1.3
  • args개발 의존성^2.7.0
  • analyzer_testing개발 의존성^0.3.4
  • test개발 의존성^1.31.2
  • test_reflective_loader개발 의존성^0.4.0

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

README 펼치기 / 접기

Solid Lints

style: solid $solid_lints

Flutter/Dart lints configuration based on software engineering industry standards (ISO/IEC, NIST) and best practices.

Documentation

For more detailed information and guidelines on using Solid Lints, please refer to the documentation:

  • https://lints.solid.software

Usage

Add dependency in your pubspec.yaml:

dev_dependencies:
  solid_lints: <INSERT LATEST VERSION>

Enable the plugin and include solid_lints in your project's top-level analysis_options.yaml:

include: package:solid_lints/analysis_options.yaml

plugins:
  solid_lints: <INSERT LATEST VERSION>

Also, you can use a specialized rule set designed for Dart tests. Add an analysis_options.yaml file under the test/ directory, and include the ruleset:

include: package:solid_lints/analysis_options_test.yaml

plugins:
  solid_lints: <INSERT LATEST VERSION>

Then you can see suggestions in your IDE or you can run checks manually:

dart analyze

Configuration

You can customize individual rule settings in your analysis_options.yaml:

plugins:
  solid_lints: <INSERT LATEST VERSION>

solid_lints:
  diagnostics:
    cyclomatic_complexity:
      max_complexity: 10
    avoid_non_null_assertion: true

Badge

To indicate that your project is using Solid Lints, you can use the following badge:

[![style: solid](https://img.shields.io/badge/style-solid-orange)](https://pub.dev/packages/solid_lints)