dart_lintz 1.2.3 copy "dart_lintz: ^1.2.3" to clipboard
dart_lintz: ^1.2.3 copied to clipboard

A very strict set of Dart lint rules. Inspired by the likes of Java and Apex.

example/main.dart

class Base {
  Base({
    required this.name,
  });

  final String name;

  String getName(String s) {
    String r = '';

    switch (s) {
      case 'test':
        r = 'test';
      case 'hi':
        r = 'hi';
      default:
    }

    return r;
  }
}

class Child extends Base {
  Child({
    required super.name,
  });
}
1
likes
160
points
107
downloads

Publisher

verified publishermj12358.dev

Weekly Downloads

A very strict set of Dart lint rules. Inspired by the likes of Java and Apex.

Repository (GitHub)

Topics

#dart #lints

Documentation

API reference

Funding

Consider supporting this project:

www.buymeacoffee.com

License

BSD-3-Clause (license)

More

Packages that depend on dart_lintz