forked from GitJournal/GitJournal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
analysis_options.yaml
35 lines (32 loc) · 998 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
30
31
32
33
34
35
# SPDX-FileCopyrightText: 2019-2021 Vishesh Handa <[email protected]>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
include: package:flutter_lints/flutter.yaml
analyzer:
errors:
missing_required_param: error
missing_return: error
todo: ignore
fixme: ignore
hack: ignore
directives_ordering: ignore
exclude:
- "bin/cache/**"
- "lib/generated_plugin_registrant.dart"
- lib/account/init.dart
- lib/experiments/**
linter:
rules:
constant_identifier_names: false
avoid_renaming_method_parameters: false
use_key_in_widget_constructors: false
prefer_function_declarations_over_variables: false
no_logic_in_create_state: false
non_constant_identifier_names: false
use_string_buffers: true
avoid_void_async: true
# unawaited_futures: true
no_leading_underscores_for_local_identifiers: false
library_private_types_in_public_api: false
use_build_context_synchronously: false
dangling_library_doc_comments: false