-
Notifications
You must be signed in to change notification settings - Fork 2
/
analysis_options.yaml
29 lines (23 loc) · 975 Bytes
/
analysis_options.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# This file configures the analyzer to use the lint rule set from `package:lint`
include: package:lint/strict.yaml # For production apps
# include: package:lint/casual.yaml # For code samples, hackathons and other non-production code
# include: package:lint/package.yaml # Use this for packages with public API
# You might want to exclude auto-generated files from dart analysis
analyzer:
exclude:
- lib/generated/**
errors:
todo: info
# You can customize the lint rules set to your own liking. A list of all rules
# can be found at https://dart-lang.github.io/linter/lints/options/options.html
linter:
rules:
directives_ordering: false
sort_pub_dependencies: false
# Util classes are awesome!
avoid_classes_with_only_static_members: false
# Make constructors the first thing in every class
sort_constructors_first: true
# Choose wisely, but you don't have to
# prefer_double_quotes: true
prefer_single_quotes: true