mirror of
https://github.com/hanskokx/arcane_analysis.git
synced 2026-05-14 02:19:10 +02:00
e76edfa8c3
Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
13 lines
475 B
Dart
13 lines
475 B
Dart
// The following syntax deactivates a lint for the entire file:
|
|
// ignore_for_file: avoid_print
|
|
|
|
void main() {
|
|
/// The following line would normally show a lint warning
|
|
/// but we can disable the lint rule for this line using the following syntax.
|
|
var greeting = "hello world"; // ignore: prefer_final_locals
|
|
|
|
/// The following line would normally show a lint warning
|
|
/// but we can disable the lint rule for this file using `ignore_for_file`.
|
|
print(greeting);
|
|
}
|