2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-18 21:25:38 +00:00

More linting work

This commit is contained in:
Oliver
2021-09-28 20:24:55 +10:00
parent c1152ee286
commit ad0cc36540
50 changed files with 904 additions and 907 deletions

View File

@ -1,7 +1,9 @@
include: package:lint/analysis_options.yaml
analyzer:
exclude: [build/**]
exclude:
- [build/**]
- lib/generated/**
language:
strict-raw-types: true
strong-mode:
@ -14,10 +16,44 @@ linter:
# Turn off what you don't like. #
# ------------------------------------- #
# Make constructors the first thing in every class
sort_constructors_first: true
# Make constructors the first thing in every class
sort_constructors_first: true
prefer_single_quotes: true
prefer_double_quotes: true
# Blindly follow the Flutter code style, which prefers types everywhere
always_specify_types: true
prefer_final_locals: false
prefer_const_constructors: false
prefer_final_in_for_each: false
use_build_context_synchronously: false
avoid_redundant_argument_values: false
unnecessary_brace_in_string_interps: false
unnecessary_string_interpolations: false
no_logic_in_create_state: false
parameter_assignments: false
non_constant_identifier_names: false
constant_identifier_names: false
package_prefixed_library_names: false
prefer_const_literals_to_create_immutables: false
avoid_print: false
avoid_positional_boolean_parameters: false
prefer_final_fields: false
sort_child_properties_last: false
# Blindly follow the Flutter code style, which prefers types everywhere
always_specify_types: false