Skip to content

Commit

Permalink
Cleanup lints (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
lexaknyazev authored Aug 9, 2024
1 parent 4dcb6a3 commit fa9aaa3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ linter:
# - flutter_style_todos
- hash_and_equals
- implementation_imports
- invariant_booleans
- iterable_contains_unrelated_type
- join_return_with_assignment
- leading_newlines_in_multiline_strings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ class KhrMaterialsDispersion extends GltfProperty {
while (o != null) {
o = context.owners[o];
if (o is Material) {
// The dispersion extension needs to be combined with KHR_materials_volume.
// The dispersion extension needs to be combined
// with KHR_materials_volume.
if (!o.extensions.containsKey(KHR_MATERIALS_VOLUME)) {
context.addIssue(SemanticError.khrMaterialsDispersionNoVolume);
}
Expand Down

0 comments on commit fa9aaa3

Please sign in to comment.