5d1f4876ee
This lint rule is a core lint rule; we have suppressed it only for pre-existing code reasons. There are a few individual files which simply have a consistent pattern of including underscores in some names, so I add inline ignores there. Change-Id: I89e6010203868fc10fda12b15353de41881d9b15 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/416900 Commit-Queue: Samuel Rawlins <srawlins@google.com> Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
13 lines
394 B
YAML
13 lines
394 B
YAML
include: ../analysis_options.yaml
|
|
|
|
analyzer:
|
|
exclude:
|
|
- mock_packages/**
|
|
errors:
|
|
# We have some long test class names which include one or more underscores
|
|
# to improve readability.
|
|
camel_case_types: ignore
|
|
# There are just over 100 violations of this, which can likely be ignored
|
|
# on a case-by-case or file-by-file basis.
|
|
non_constant_identifier_names: ignore
|