All Projects → VeryGoodOpenSource → very_good_analysis

VeryGoodOpenSource / very_good_analysis

Licence: MIT license
Lint rules for Dart and Flutter used internally at Very Good Ventures 🦄

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to very good analysis

Detekt
Static code analysis for Kotlin
Stars: ✭ 4,169 (+2048.97%)
Mutual labels:  lint, analysis
Exakat
The Exakat Engine : smart static analysis for PHP
Stars: ✭ 346 (+78.35%)
Mutual labels:  lint, analysis
lints
Lint all your JavaScript, CSS, HTML, Markdown and Dockerfiles with a single command
Stars: ✭ 14 (-92.78%)
Mutual labels:  lint, analysis
reverse-engineering-the-hacker-news-ranking-algorithm
An analysis of historical Hacker News data to determine the ranking algorithm
Stars: ✭ 76 (-60.82%)
Mutual labels:  analysis
particle
Package to deal with particles, the PDG particle data table, PDGIDs, etc.
Stars: ✭ 113 (-41.75%)
Mutual labels:  analysis
chart-testing-action
A GitHub Action to lint and test Helm charts
Stars: ✭ 139 (-28.35%)
Mutual labels:  lint
ldap2json
The ldap2json script allows you to extract the whole LDAP content of a Windows domain into a JSON file.
Stars: ✭ 56 (-71.13%)
Mutual labels:  analysis
Flogs
An Advanced Logging Framework develop in flutter that provides quick & simple logging solution.
Stars: ✭ 158 (-18.56%)
Mutual labels:  dart-library
Python-for-data-analysis
No description or website provided.
Stars: ✭ 18 (-90.72%)
Mutual labels:  analysis
custom-bytecode-analyzer
Java bytecode analyzer customizable via JSON rules
Stars: ✭ 66 (-65.98%)
Mutual labels:  analysis
UnROOT.jl
Native Julia I/O package to work with CERN ROOT files
Stars: ✭ 52 (-73.2%)
Mutual labels:  analysis
GymWorkoutManager
💪A functional Gym workout timer ❤️
Stars: ✭ 16 (-91.75%)
Mutual labels:  analysis
lint-deps
Lint for unused or missing dependencies in your node.js projects. Customize with plugins or configuration.
Stars: ✭ 48 (-75.26%)
Mutual labels:  lint
seapy
State Estimation and Analysis in Python
Stars: ✭ 25 (-87.11%)
Mutual labels:  analysis
sp-metadata
🔬 SharePoint Metadata Tracker
Stars: ✭ 12 (-93.81%)
Mutual labels:  analysis
amazon-transcribe-news-media-analysis
Transcribe news audio in realtime
Stars: ✭ 21 (-89.18%)
Mutual labels:  analysis
litho-lint-rules
Lint rules for Litho by Facebook http://fblitho.com/
Stars: ✭ 14 (-92.78%)
Mutual labels:  lint
quality-requirements
Beispiele für Qualitätsanforderungen an Software (etwa: Zur Vereinfachung von ATAM-Analysen oder Quality-Driven Software Architecture)
Stars: ✭ 61 (-68.56%)
Mutual labels:  analysis
shell-ci-build
A submodule to lint your shell projects with shellcheck in travis.ci builds
Stars: ✭ 39 (-79.9%)
Mutual labels:  lint
quackle
Quackle crossword game artificial intelligence and analysis tool
Stars: ✭ 126 (-35.05%)
Mutual labels:  analysis

Very Good Analysis

Very Good Ventures Very Good Ventures

Developed with 💙 by Very Good Ventures 🦄

ci pub package License: MIT style: very good analysis


This package provides lint rules for Dart and Flutter which are used at Very Good Ventures. For more information, see the complete list of options.

Note: This package was heavily inspired by pedantic.

Usage

To use the lints, add a dependency in your pubspec.yaml:

# If you use `package:very_good_analysis/very_good_analysis.dart`, add a normal dependency.
dependencies:
  very_good_analysis: ^3.0.1

# Or, if you just want `analysis_options.yaml`, it can be a dev dependency.
dev_dependencies:
  very_good_analysis: ^3.0.1

Then, add an include in analysis_options.yaml:

include: package:very_good_analysis/analysis_options.yaml

This will ensure you always use the latest version of the lints. If you wish to restrict the lint version, specify a version of analysis_options.yaml instead:

include: package:very_good_analysis/analysis_options.3.0.1.yaml

Suppressing Lints

There may be cases where specific lint rules are undesirable. Lint rules can be suppressed at the line, file, or project level.

An example use case for suppressing lint rules at the file level is suppressing the prefer_const_constructors in order to achieve 100% code coverage. This is due to the fact that const constructors are executed before the tests are run, resulting in no coverage collection.

Line Level

To suppress a specific lint rule for a specific line of code, use an ignore comment directly above the line:

// ignore: public_member_api_docs
class A {}

File Level

To suppress a specific lint rule of a specific file, use an ignore_for_file comment at the top of the file:

// ignore_for_file: public_member_api_docs

class A {}

class B {}

Project Level

To suppress a specific lint rule for an entire project, modify analysis_options.yaml:

include: package:very_good_analysis/analysis_options.yaml
linter:
  rules:
    public_member_api_docs: false

Badge

To indicate your project is using very_good_analysisstyle: very good analysis

[![style: very good analysis](https://img.shields.io/badge/style-very_good_analysis-B22C89.svg)](https://pub.dev/packages/very_good_analysis)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].