2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-04-27 21:16:48 +00:00
inventree-app/analysis_options.yaml
2021-09-28 17:53:14 +10:00

24 lines
571 B
YAML

include: package:lint/analysis_options.yaml
analyzer:
exclude: [build/**]
language:
strict-raw-types: true
strong-mode:
implicit-casts: false
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_single_quotes: true
# Blindly follow the Flutter code style, which prefers types everywhere
always_specify_types: true