mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
6592b7a3c5
* Add more choices for pin code required duration * Fix spacing in Cake Features * Update Cake Features cards * Update Cake Pay image * Add NanoGPT image * Update Sign/Verify strings * Update more flags * update moonpay currency name * Update more icons * Add friendly message for less than minimum fee * fix translation [skip ci] * Fix icon theming and add Telegram link * Fix color issue for restore screen * rename matic poly to pol * minor potential fix [skip ci] * minor fix [skip ci] * Update analysis_options.yaml * fix translations * fix translation * revert regex changes * Update bitcoin_cash_electrum_server_list.yml * Update address_validator.dart --------- Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
87 lines
2.2 KiB
YAML
87 lines
2.2 KiB
YAML
include: package:lints/recommended.yaml
|
|
|
|
|
|
analyzer:
|
|
exclude: [
|
|
build/**,
|
|
lib/**.g.dart,
|
|
cw_core/lib/**.g.dart,
|
|
cw_haven/lib/**.g.dart,
|
|
cw_monero/lib/**.g.dart,
|
|
lib/generated/*.dart,
|
|
cw_monero/ios/External/**,
|
|
cw_shared_external/**,
|
|
shared_external/**,
|
|
lib/bitcoin/cw_bitcoin.dart,
|
|
lib/bitcoin_cash/cw_bitcoin_cash.dart,
|
|
lib/ethereum/cw_ethereum.dart,
|
|
lib/haven/cw_haven.dart,
|
|
lib/monero/cw_monero.dart,
|
|
lib/nano/cw_nano.dart,
|
|
lib/polygon/cw_polygon.dart,
|
|
lib/solana/cw_solana.dart,
|
|
lib/tron/cw_tron.dart,
|
|
lib/wownero/cw_wownero.dart,
|
|
]
|
|
language:
|
|
strict-casts: true
|
|
strict-raw-types: true
|
|
|
|
linter:
|
|
rules:
|
|
- cancel_subscriptions
|
|
- always_declare_return_types
|
|
- prefer_final_fields
|
|
|
|
|
|
# analyzer:
|
|
# strong-mode:
|
|
# implicit-casts: false
|
|
# implicit-dynamic: false
|
|
# exclude: [build/**, lib/generated/*.dart, lib/**.g.dart, cw_monero/ios/External/**, cw_shared_external/**, shared_external/**]
|
|
|
|
# linter:
|
|
# rules:
|
|
# - always_declare_return_types
|
|
# - annotate_overrides
|
|
# - avoid_empty_else
|
|
# - avoid_init_to_null
|
|
# - avoid_return_types_on_setters
|
|
# - await_only_futures
|
|
# - camel_case_types
|
|
# - cancel_subscriptions
|
|
# - close_sinks
|
|
# - comment_references
|
|
# - constant_identifier_names
|
|
# - control_flow_in_finally
|
|
# - empty_catches
|
|
# - empty_constructor_bodies
|
|
# - empty_statements
|
|
# - hash_and_equals
|
|
# - invariant_booleans
|
|
# - iterable_contains_unrelated_type
|
|
# - library_names
|
|
# - library_prefixes
|
|
# - list_remove_unrelated_type
|
|
# - literal_only_boolean_expressions
|
|
# - non_constant_identifier_names
|
|
# - one_member_abstracts
|
|
# - only_throw_errors
|
|
# - overridden_fields
|
|
# - package_api_docs
|
|
# - package_names
|
|
# - package_prefixed_library_names
|
|
# - parameter_assignments
|
|
# - prefer_final_fields
|
|
# - prefer_final_locals
|
|
# - prefer_is_not_empty
|
|
# - slash_for_doc_comments
|
|
# - sort_constructors_first
|
|
# - sort_unnamed_constructors_first
|
|
# - test_types_in_equals
|
|
# - throw_in_finally
|
|
# - type_init_formals
|
|
# - unawaited_futures
|
|
# - unnecessary_getters_setters
|
|
# - unrelated_type_equality_checks
|
|
# - valid_regexps
|