forked from Tkko/Flutter_Pinput
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalysis_options.yaml
More file actions
32 lines (30 loc) · 789 Bytes
/
analysis_options.yaml
File metadata and controls
32 lines (30 loc) · 789 Bytes
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
30
31
32
include: package:flutter_lints/flutter.yaml
analyzer:
errors:
missing_required_param: warning
missing_return: warning
todo: ignore
exclude:
- flutter/**
- lib/api/*.dart
language:
strict-raw-types: true
linter:
rules:
unnecessary_this: false
always_declare_return_types: true
camel_case_types: true
empty_constructor_bodies: true
annotate_overrides: true
avoid_init_to_null: true
constant_identifier_names: true
one_member_abstracts: true
slash_for_doc_comments: true
unnecessary_brace_in_string_interps: true
cancel_subscriptions: true
close_sinks: true
unnecessary_const: true
unnecessary_new: true
prefer_single_quotes: true
require_trailing_commas: true
public_member_api_docs: true