Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
0f91f0d4
Unverified
Commit
0f91f0d4
authored
Mar 03, 2021
by
Michael Goderbauer
Committed by
GitHub
Mar 03, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean-up analysis_options files (#77098)
parent
cdca6485
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
8 additions
and
63 deletions
+8
-63
analysis_options.yaml
analysis_options.yaml
+2
-5
analysis_options.yaml
dev/missing_dependency_tests/analysis_options.yaml
+0
-1
analysis_options.yaml
examples/layers/analysis_options.yaml
+0
-11
analysis_options.yaml
packages/flutter/analysis_options.yaml
+2
-5
analysis_options.yaml
packages/flutter/test_private/analysis_options.yaml
+0
-1
analysis_options.yaml
packages/flutter_driver/analysis_options.yaml
+0
-11
analysis_options.yaml
packages/flutter_goldens/analysis_options.yaml
+0
-4
analysis_options.yaml
packages/flutter_goldens_client/analysis_options.yaml
+0
-4
skia_client.dart
packages/flutter_goldens_client/lib/skia_client.dart
+4
-0
analysis_options.yaml
packages/flutter_localizations/analysis_options.yaml
+0
-11
analysis_options.yaml
packages/flutter_test/analysis_options.yaml
+0
-10
No files found.
analysis_options.yaml
View file @
0f91f0d4
...
@@ -36,13 +36,10 @@ analyzer:
...
@@ -36,13 +36,10 @@ analyzer:
# Stream and not importing dart:async
# Stream and not importing dart:async
# Please see https://github.com/flutter/flutter/pull/24528 for details.
# Please see https://github.com/flutter/flutter/pull/24528 for details.
sdk_version_async_exported_from_core
:
ignore
sdk_version_async_exported_from_core
:
ignore
# Turned off until null-safe rollout is complete.
unnecessary_null_comparison
:
ignore
exclude
:
exclude
:
-
"
bin/cache/**"
-
"
bin/cache/**"
# the following two are relative to the stocks example and the flutter package respectively
# see https://github.com/dart-lang/sdk/issues/28463
-
"
lib/i18n/messages_*.dart"
-
"
lib/src/http/**"
-
"
test_fixes/**"
linter
:
linter
:
rules
:
rules
:
...
...
dev/missing_dependency_tests/analysis_options.yaml
View file @
0f91f0d4
analyzer
:
analyzer
:
exclude
:
exclude
:
-
'
**'
-
'
**'
examples/layers/analysis_options.yaml
deleted
100644 → 0
View file @
cdca6485
# Use the parent analysis options settings and enable null-experiment.
include
:
../../analysis_options.yaml
analyzer
:
errors
:
always_require_non_null_named_parameters
:
false
# not needed with nnbd
type_init_formals
:
false
# https://github.com/dart-lang/linter/issues/2192
unrelated_type_equality_checks
:
false
# https://github.com/dart-lang/linter/issues/2196
void_checks
:
false
# https://github.com/dart-lang/linter/issues/2185
unnecessary_null_comparison
:
false
# Turned off until null-safe rollout is complete.
packages/flutter/analysis_options.yaml
View file @
0f91f0d4
# Use the parent analysis options settings and enable null-experiment.
include
:
../analysis_options.yaml
include
:
../analysis_options.yaml
analyzer
:
analyzer
:
errors
:
exclude
:
always_require_non_null_named_parameters
:
false
# not needed with nnbd
-
"
test_fixes/**"
unnecessary_null_comparison
:
false
# Turned off until null-safe rollout is complete.
packages/flutter/test_private/analysis_options.yaml
deleted
100644 → 0
View file @
cdca6485
include
:
../analysis_options.yaml
packages/flutter_driver/analysis_options.yaml
deleted
100644 → 0
View file @
cdca6485
# Use the parent analysis options settings and enable null-experiment.
include
:
../analysis_options.yaml
analyzer
:
errors
:
always_require_non_null_named_parameters
:
false
# not needed with nnbd
type_init_formals
:
false
# https://github.com/dart-lang/linter/issues/2192
unrelated_type_equality_checks
:
false
# https://github.com/dart-lang/linter/issues/2196
void_checks
:
false
# https://github.com/dart-lang/linter/issues/2185
unnecessary_null_comparison
:
false
# Turned off until null-safe rollout is complete.
packages/flutter_goldens/analysis_options.yaml
deleted
100644 → 0
View file @
cdca6485
# Use the analysis options settings from the top level of the repo (not
# the ones from above, which include the `public_member_api_docs` rule).
include
:
../../analysis_options.yaml
packages/flutter_goldens_client/analysis_options.yaml
deleted
100644 → 0
View file @
cdca6485
# Use the analysis options settings from the top level of the repo (not
# the ones from above, which include the `public_member_api_docs` rule).
include
:
../../analysis_options.yaml
packages/flutter_goldens_client/lib/skia_client.dart
View file @
0f91f0d4
...
@@ -22,6 +22,10 @@ const String _kTestBrowserKey = 'FLUTTER_TEST_BROWSER';
...
@@ -22,6 +22,10 @@ const String _kTestBrowserKey = 'FLUTTER_TEST_BROWSER';
/// A client for uploading image tests and making baseline requests to the
/// A client for uploading image tests and making baseline requests to the
/// Flutter Gold Dashboard.
/// Flutter Gold Dashboard.
class
SkiaGoldClient
{
class
SkiaGoldClient
{
/// Creates a [SkiaGoldClient] with the given [workDirectory].
///
/// All other parameters are optional. They may be provided in tests to
/// override the defaults for [fs], [process], [platform], and [httpClient].
SkiaGoldClient
(
SkiaGoldClient
(
this
.
workDirectory
,
{
this
.
workDirectory
,
{
this
.
fs
=
const
LocalFileSystem
(),
this
.
fs
=
const
LocalFileSystem
(),
...
...
packages/flutter_localizations/analysis_options.yaml
deleted
100644 → 0
View file @
cdca6485
# Use the parent analysis options settings and enable null-experiment.
include
:
../analysis_options.yaml
analyzer
:
errors
:
always_require_non_null_named_parameters
:
false
# not needed with nnbd
type_init_formals
:
false
# https://github.com/dart-lang/linter/issues/2192
unrelated_type_equality_checks
:
false
# https://github.com/dart-lang/linter/issues/2196
void_checks
:
false
# https://github.com/dart-lang/linter/issues/2185
unnecessary_null_comparison
:
false
# Turned off until null-safe rollout is complete.
packages/flutter_test/analysis_options.yaml
deleted
100644 → 0
View file @
cdca6485
# Use the parent analysis options settings and enable null-experiment.
include
:
../analysis_options.yaml
analyzer
:
errors
:
always_require_non_null_named_parameters
:
false
# not needed with nnbd
unrelated_type_equality_checks
:
false
# https://github.com/dart-lang/linter/issues/2196
void_checks
:
false
# https://github.com/dart-lang/linter/issues/2185
unnecessary_null_comparison
:
false
# Turned off until null-safe rollout is complete.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment