mirror of
https://github.com/inventree/inventree-app.git
synced 2025-04-27 04:56:48 +00:00
* Add code_scan_listener package * Implement wedge controller widget * Update barcode settings widget - Allow user to choose which barcode scanner to use * Fix typo * Select barcode scanner widget based on user preference * Fix rendering issues for wedge controller * Update release notes * Add unit test for wedge scanner widget - Required some tweaks to other code * Use better library - https://github.com/fuadreza/flutter_barcode_listener - Fork of https://github.com/shaxxx/flutter_barcode_listener - Properly handles key "case" issues (shift, essentially) - Verified that it works correctly for multiple character types * Local copy of code, rather than relying on package which is not available on pub.dev * Fix unit test
83 lines
1.7 KiB
YAML
83 lines
1.7 KiB
YAML
include: package:lint/analysis_options.yaml
|
|
|
|
analyzer:
|
|
exclude:
|
|
- [build/**]
|
|
- lib/generated/**
|
|
language:
|
|
strict-raw-types: true
|
|
|
|
linter:
|
|
rules:
|
|
# ------ Disable individual rules ----- #
|
|
# --- #
|
|
# Turn off what you don't like. #
|
|
# ------------------------------------- #
|
|
|
|
# Make constructors the first thing in every class
|
|
sort_constructors_first: true
|
|
|
|
prefer_double_quotes: true
|
|
|
|
unreachable_from_main: false
|
|
|
|
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
|
|
|
|
prefer_interpolation_to_compose_strings: 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
|
|
|
|
depend_on_referenced_packages: false
|
|
|
|
noop_primitive_operations: false
|
|
|
|
directives_ordering: false
|
|
|
|
# Blindly follow the Flutter code style, which prefers types everywhere
|
|
always_specify_types: false
|
|
|
|
avoid_unnecessary_containers: false
|
|
|
|
require_trailing_commas: false
|
|
|
|
eol_at_end_of_file: false
|
|
|
|
avoid_dynamic_calls: false
|
|
|
|
avoid_classes_with_only_static_members: false
|
|
|
|
no_leading_underscores_for_local_identifiers: false
|
|
|
|
use_super_parameters: false
|
|
|