mirror of
https://github.com/acamarata/acamarata_lints.git
synced 2026-06-30 18:54:24 +00:00
docs: replace em-dash connectors per writing standard
This commit is contained in:
parent
e5f84e6d15
commit
093efe566f
1 changed files with 4 additions and 4 deletions
|
|
@ -56,7 +56,7 @@ See `example/analysis_options.yaml` for a full annotated example.
|
|||
| `require_trailing_commas` | Trailing commas produce cleaner diffs and reduce merge conflicts. |
|
||||
| `prefer_const_constructors` | Const constructors reduce Flutter widget rebuilds. |
|
||||
| `avoid_dynamic_calls` | Dynamic calls bypass the type system and cause runtime errors. |
|
||||
| `public_member_api_docs` | All public APIs must be documented — these are library packages. |
|
||||
| `public_member_api_docs` | All public APIs must be documented. These are library packages. |
|
||||
| `use_super_parameters` | Dart 2.17+ super-initializer syntax reduces boilerplate. |
|
||||
| `avoid_positional_boolean_parameters` | Boolean positional parameters are unreadable at call sites. |
|
||||
| `sort_constructors_first` | Consistent class structure across all files. |
|
||||
|
|
@ -66,9 +66,9 @@ See `example/analysis_options.yaml` for a full annotated example.
|
|||
|
||||
This package enables three strict analyzer modes:
|
||||
|
||||
- `strict-casts` — no implicit casts between types
|
||||
- `strict-inference` — type inference failures are reported
|
||||
- `strict-raw-types` — raw generic types (List without a type argument) are flagged
|
||||
- `strict-casts`: no implicit casts between types
|
||||
- `strict-inference`: type inference failures are reported
|
||||
- `strict-raw-types`: raw generic types (List without a type argument) are flagged
|
||||
|
||||
## Requirements
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue