very_good_analysis icon indicating copy to clipboard operation
very_good_analysis copied to clipboard

Lint rules for Dart and Flutter used internally at Very Good Ventures 🦄

Results 18 very_good_analysis issues
Sort by recently updated
recently updated
newest added

Hello. According to this page on the [Dart guide](https://dart.dev/guides/libraries/create-library-packages#importing-library-files): > When importing a library file from your own package, use a relative path when both files are inside of lib,...

## Description https://github.com/VeryGoodOpenSource/very_good_analysis/issues/50 feat: Remove deprecated "Invariant booleans" https://github.com/VeryGoodOpenSource/very_good_analysis/issues/49 Add recommended lints that are missing from the package ## Type of Change - [x] ✨ New feature (non-breaking change which...

enhancement

**Additional context** https://github.com/dart-lang/linter/pull/3497 deprecated the `invariant_booleans` rule, that emits lots of false positives. **Describe the solution you'd like** `invariant_booleans` will be removed in the future Shall we remove it here...

Hey, I've noticed there are three lints that are recommended by Flutter team through the `flutter_lints` package but are missing from the `very_good_analysis` package: - `no_leading_underscores_for_library_prefixes` - `no_leading_underscores_for_local_identifiers` - `depend_on_referenced_packages`...

## Description As a maintainer I would like to have a script that when executed once sets all files up (as documented, see https://github.com/VeryGoodOpenSource/very_good_analysis/pull/92) to perform a new release. This...

chore
p2

Consider including `no_wildcard_variable_uses`, an upcoming rule, on a future version of very_good_analysis. Seems like in a future version of dart, variables names with and exclusively with underscores will no longer...

## Description Making asynchronous calls in non-async functions usually signals a programming error. These functions should generally be marked async, and such futures should probably be awaited (as enforced by...

## Status **IN DEVELOPMENT** ## Description Fixes: #107. This adds newly recommended lints and removes recently removed lints. Lints which were only under discussion for removal or which haven't been...

**Description** With the release of Flutter 3.24.0 and Dart 3.5 some things are breaking. Need to review the package and make any necessary fixes. **Requirements** - [ ] Package works...

chore
p1

Hi, it's me again! **Is your feature request related to a problem? Please describe.** Update lints for Dart 3.5 (part of #108) **Describe the solution you'd like** Add: - [...

feature
p1