Use flutter_lint

Instead of picking lint values. This way I don't need to routinely
looking at extra lints to enable.
This commit is contained in:
Vishesh Handa
2021-09-21 15:38:01 +02:00
parent 5236a2bf31
commit c4ef1f569b
121 changed files with 712 additions and 761 deletions

View File

@ -1,5 +1,4 @@
#!/usr/bin/env dart
// SPDX-FileCopyrightText: 2019-2021 Vishesh Handa <me@vhanda.in>
//
// SPDX-License-Identifier: AGPL-3.0-or-later
@ -38,7 +37,7 @@ Future<int> main(List<String> args) async {
print(contents);
final filename = 'lib/.env.dart';
const filename = 'lib/.env.dart';
await File(filename).writeAsString(contents);
return 0;