diff --git a/lib/casual.yaml b/lib/casual.yaml index e646dcf..8986b5f 100755 --- a/lib/casual.yaml +++ b/lib/casual.yaml @@ -507,6 +507,13 @@ linter: # https://dart-lang.github.io/linter/lints/leading_newlines_in_multiline_strings.html - leading_newlines_in_multiline_strings + # Library annotations must be attached to the `library` keyword + # + # Dart SDK: 2.19 • (Linter v1.30.0) + # + # https://dart-lang.github.io/linter/lints/library_annotations.html + - library_annotations + # Makes sure a library name is a valid dart identifier. # This comes in handy for test files combining multiple tests where the file name can be used as identifier # diff --git a/lib/strict.yaml b/lib/strict.yaml index 09271ea..cdf7ee1 100755 --- a/lib/strict.yaml +++ b/lib/strict.yaml @@ -509,6 +509,13 @@ linter: # https://dart-lang.github.io/linter/lints/leading_newlines_in_multiline_strings.html - leading_newlines_in_multiline_strings + # Library annotations must be attached to the `library` keyword + # + # Dart SDK: 2.19 • (Linter v1.30.0) + # + # https://dart-lang.github.io/linter/lints/library_annotations.html + - library_annotations + # Makes sure a library name is a valid dart identifier. # This comes in handy for test files combining multiple tests where the file name can be used as identifier #