line_limit_lint 0.0.6 copy "line_limit_lint: ^0.0.6" to clipboard
line_limit_lint: ^0.0.6 copied to clipboard

Lint rule, designed to highlight widget files that exceed a specified size threshold.

example/lib/main.dart

import 'package:example/nice_widget.dart';
import 'package:flutter/material.dart';

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

/// Root widget of an app.
class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: NiceWidget(),
    );
  }
}
3
likes
80
points
22
downloads

Publisher

unverified uploader

Weekly Downloads

Lint rule, designed to highlight widget files that exceed a specified size threshold.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

analyzer, analyzer_plugin, custom_lint_builder

More

Packages that depend on line_limit_lint