dart_custom_lint
dart_custom_lint copied to clipboard
💡 Easily write powerful Dart & Flutter lint rules for your projects or for users of your packages.
It would be helpful for CI/CD if the `custom_lint` CLI output the severity of the lint. For example, perhaps I want to fail PR's that trigger a lint of 'error'...
This change makes sure that in case of non-zero exit code, it is properly propagated to the CLI. Currently, no matter if there's an error or not, the `flutter pub...
I created a lint_package and tried to use this package within my application: ### 1. Project structure **lint_package structure** pubspec.yaml ``` dependencies: analyzer: ^4.2.0 analyzer_plugin: ^0.10.0 custom_lint_builder: ^0.0.9+1 ``` In...
My custom linter works fine in the IDE and when run on the terminal with `flutter pub run custom_lint`. But when I try to run `flutter analyze` in a CI...
Thanks for this package! It makes the process of creating custom rules sooo much simpler, I love it! 💙 The package, though, does not work for cases when `analysis_options.yaml` is...
`custom_lint 0.0.9+1` depends on `riverpod 2.0.0-dev.9` meaning we cannot using while using stable `riverpod 1.0.3`. Is there something that can be done about it besides switching to dev version of...
Hello, At the moment dart_custom_lint is capable of supporting custom quick fixes, and that's great. Do you think we can do the same thing to support [quick assists](https://github.com/dart-lang/sdk/blob/main/pkg/analyzer_plugin/doc/tutorial/assists.md) too?
Running the custom lint analysis slows down disproportionately for large projects. This is a huge impediment for using `custom_lint` on large projects. I have made some measurements on a very...
Error is received in the pubspec.yaml file (of the application depending on a custom lint) when setting up first lint: ```Failed to start plugin dart(custom_lint_plugin_error)``` Steps to Reproduce: 1. Create...