Re-sync analysis_options.yaml with flutter/flutter (#5695)

The analysis options have gotten behind; this re-syncs to the current state of flutter/flutter. For options that are non-trivial to enable, either because they are non-trivial to fix, or touch a very large number of files, they are locally disabled with clear "LOCAL CHANGE" markers so that it's obvious where we are out of sync. For options that are simple to resolve, they are enabled in the PR.

Part of https://github.com/flutter/flutter/issues/76229
This commit is contained in:
stuartmorgan
2022-05-11 11:48:47 -04:00
committed by GitHub
parent 9544f04a50
commit e8b4147fcc
14 changed files with 28 additions and 31 deletions

View File

@ -110,7 +110,7 @@ class CreateAllPluginsAppCommand extends PluginCommand {
newGradle.writeln(' multiDexEnabled true');
} else if (line.contains('dependencies {')) {
newGradle.writeln(
' implementation \'com.google.guava:guava:27.0.1-android\'\n',
" implementation 'com.google.guava:guava:27.0.1-android'\n",
);
// Tests for https://github.com/flutter/flutter/issues/43383
newGradle.writeln(

View File

@ -30,7 +30,7 @@ class CustomTestCommand extends PackageLoopingCommand {
@override
final String description = 'Runs package-specific custom tests defined in '
'a package\'s tool/$_scriptName file.\n\n'
"a package's tool/$_scriptName file.\n\n"
'This command requires "dart" to be in your path.';
@override

View File

@ -130,8 +130,7 @@ class FormatCommand extends PluginCommand {
if (clangFiles.isNotEmpty) {
final String clangFormat = getStringArg('clang-format');
if (!await _hasDependency(clangFormat)) {
printError(
'Unable to run \'clang-format\'. Make sure that it is in your '
printError('Unable to run "clang-format". Make sure that it is in your '
'path, or provide a full path with --clang-format.');
throw ToolExit(_exitDependencyMissing);
}
@ -156,7 +155,7 @@ class FormatCommand extends PluginCommand {
final String java = getStringArg('java');
if (!await _hasDependency(java)) {
printError(
'Unable to run \'java\'. Make sure that it is in your path, or '
'Unable to run "java". Make sure that it is in your path, or '
'provide a full path with --java.');
throw ToolExit(_exitDependencyMissing);
}

View File

@ -241,8 +241,7 @@ class LicenseCheckCommand extends PluginCommand {
}
// Sort by path for more usable output.
final int Function(File, File) pathCompare =
(File a, File b) => a.path.compareTo(b.path);
int pathCompare(File a, File b) => a.path.compareTo(b.path);
incorrectFirstPartyFiles.sort(pathCompare);
unrecognizedThirdPartyFiles.sort(pathCompare);

View File

@ -169,8 +169,8 @@ class MakeDepsPathBasedCommand extends PluginCommand {
// then re-serialiazing so that it's a localized change, rather than
// rewriting the whole file (e.g., destroying comments), which could be
// more disruptive for local use.
String newPubspecContents = pubspecContents +
'''
String newPubspecContents = '''
$pubspecContents
$_dependencyOverrideWarningComment
dependency_overrides:

View File

@ -225,8 +225,8 @@ class PubspecCheckCommand extends PackageLoopingCommand {
bool _checkIssueLink(Pubspec pubspec) {
return pubspec.issueTracker
?.toString()
.startsWith(_expectedIssueLinkFormat) ==
true;
.startsWith(_expectedIssueLinkFormat) ??
false;
}
// Validates the "implements" keyword for a plugin, returning an error
@ -287,8 +287,8 @@ class PubspecCheckCommand extends PackageLoopingCommand {
.where((String package) => !dependencies.contains(package));
if (missingPackages.isNotEmpty) {
return 'The following default_packages are missing '
'corresponding dependencies:\n ' +
missingPackages.join('\n ');
'corresponding dependencies:\n'
' ${missingPackages.join('\n ')}';
}
return null;

View File

@ -403,7 +403,7 @@ ${indentation}HTTP response: ${pubVersionFinderResponse.httpResponse.body}
final String badNextErrorMessage = '${indentation}When bumping the version '
'for release, the NEXT section should be incorporated into the new '
'version\'s release notes.';
"version's release notes.";
// Skip validation for the special NEXT version that's used to accumulate
// changes that don't warrant publishing on their own.
@ -531,7 +531,7 @@ ${indentation}The first version listed in CHANGELOG.md is $fromChangeLog.
final Directory gitRoot =
packagesDir.fileSystem.directory((await gitDir).path);
final String relativePackagePath =
getRelativePosixPath(package.directory, from: gitRoot) + '/';
'${getRelativePosixPath(package.directory, from: gitRoot)}/';
bool hasChanges = false;
bool needsVersionChange = false;
bool hasChangelogChange = false;
@ -594,7 +594,7 @@ ${indentation}The first version listed in CHANGELOG.md is $fromChangeLog.
'change description.');
} else {
printError(
'No CHANGELOG change found. If this PR needs an exemption from'
'No CHANGELOG change found. If this PR needs an exemption from '
'the standard policy of listing all changes in the CHANGELOG, '
'please add a line starting with\n'
'$_missingChangelogChangeJustificationMarker\n'