mvvm_linter 1.2.1 copy "mvvm_linter: ^1.2.1" to clipboard
mvvm_linter: ^1.2.1 copied to clipboard

The MVVM Linter is a tool designed to enforce best practices and coding standards in MVVM.

example/lib/main.dart

import 'package:flutter/material.dart';

void main() {
  runApp(const MainApp());
}

class MainApp extends StatelessWidget {
  const MainApp({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(
        body: Center(
          child: Text('Hello World!'),
        ),
      ),
    );
  }
}
2
likes
140
points
43
downloads

Publisher

unverified uploader

Weekly Downloads

The MVVM Linter is a tool designed to enforce best practices and coding standards in MVVM.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

analyzer, analyzer_plugin, collection, custom_lint_builder

More

Packages that depend on mvvm_linter