fcheck 1.0.8 copy "fcheck: ^1.0.8" to clipboard
fcheck: ^1.0.8 copied to clipboard

Code quality analysis for Flutter and Dart projects with architecture, maintainability, and safety checks, deterministic reports, and compliance scoring.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'home_page.dart';

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

// This is a single class file - should be compliant
class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

// Another class in the same file - this makes it non-compliant
class AnotherClass {
  void doSomething() {
    print('Doing something');
  }
}
12
likes
160
points
2.43k
downloads

Documentation

API reference

Publisher

verified publishervteam.com

Weekly Downloads

Code quality analysis for Flutter and Dart projects with architecture, maintainability, and safety checks, deterministic reports, and compliance scoring.

Repository (GitHub)
View/report issues

Topics

#analysis #architecture #code-style #lint #compliance

License

MIT (license)

Dependencies

analyzer, args, glob, path, yaml

More

Packages that depend on fcheck