9c2d9b6831
- Fix violations - Ignore lint in js_ast directory. Still holding onto hope that we will merge this with dart2js version and move out of the ddc package. - Import all lints from pedantic 1.9.0 Change-Id: I834b4b197dcf0b6924417cdd337cda9a1b6249d5 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/183043 Reviewed-by: Mark Zhou <markzipan@google.com> Commit-Queue: Nicholas Shahan <nshahan@google.com>
22 lines
445 B
YAML
22 lines
445 B
YAML
include: package:pedantic/analysis_options.1.9.0.yaml
|
|
|
|
analyzer:
|
|
strong-mode:
|
|
implicit-casts: false
|
|
errors:
|
|
todo: ignore
|
|
exclude:
|
|
- doc/api/**
|
|
- gen/**
|
|
- node_modules/**
|
|
- test/codegen/**
|
|
- test/samples/**
|
|
- test/transformer/hello_app/**
|
|
|
|
linter:
|
|
rules:
|
|
# Not enforced by pedantic at any version.
|
|
- directives_ordering
|
|
- prefer_null_aware_operators
|
|
- prefer_typing_uninitialized_variables
|