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
e464a819
Commit
e464a819
authored
May 04, 2016
by
Devon Carew
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove the packages/flutter_tools/.analysis_options file (#3733)
parent
07b5f83e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
22 deletions
+9
-22
pageable_list.dart
dev/manual_tests/pageable_list.dart
+6
-2
dartdoc.dart
dev/tools/dartdoc.dart
+2
-2
mega_gallery.dart
dev/tools/mega_gallery.dart
+1
-0
.analysis_options
packages/flutter_tools/.analysis_options
+0
-18
No files found.
dev/manual_tests/pageable_list.dart
View file @
e464a819
...
...
@@ -22,8 +22,12 @@ class PageableListAppState extends State<PageableListApp> {
@override
void
initState
()
{
super
.
initState
();
List
<
Size
>
cardSizes
=
[
[
100.0
,
300.0
],
[
300.0
,
100.0
],
[
200.0
,
400.0
],
[
400.0
,
400.0
],
[
300.0
,
400.0
]
List
<
Size
>
cardSizes
=
<
List
<
double
>>[
<
double
>[
100.0
,
300.0
],
<
double
>[
300.0
,
100.0
],
<
double
>[
200.0
,
400.0
],
<
double
>[
400.0
,
400.0
],
<
double
>[
300.0
,
400.0
]
]
.
map
((
List
<
double
>
args
)
=>
new
Size
(
args
[
0
],
args
[
1
]))
.
toList
();
...
...
dev/tools/dartdoc.dart
View file @
e464a819
...
...
@@ -11,7 +11,7 @@ import 'package:path/path.dart' as path;
/// This script expects to run with the cwd as the root of the flutter repo. It
/// will generate documentation for the packages in `//packages/` and write the
/// documentation to `//dev/docs/doc/api/`.
main
(
List
<
String
>
args
)
async
{
Future
<
Null
>
main
(
List
<
String
>
args
)
async
{
// If we're run from the `tools` dir, set the cwd to the repo root.
if
(
path
.
basename
(
Directory
.
current
.
path
)
==
'tools'
)
Directory
.
current
=
Directory
.
current
.
parent
.
parent
;
...
...
@@ -104,7 +104,7 @@ List<Directory> _findPackages() {
.
toList
();
}
List
<
String
>
_libraryRefs
()
sync
*
{
Iterable
<
String
>
_libraryRefs
()
sync
*
{
for
(
Directory
dir
in
_findPackages
())
{
String
dirName
=
path
.
basename
(
dir
.
path
);
...
...
dev/tools/mega_gallery.dart
View file @
e464a819
...
...
@@ -155,6 +155,7 @@ class SourceStats {
int
files
=
0
;
int
lines
=
0
;
@override
String
toString
()
=>
'
${_comma(files)}
files,
${_comma(lines)}
lines'
;
}
...
...
packages/flutter_tools/.analysis_options
deleted
100644 → 0
View file @
07b5f83e
# A temporary file to do some validation in the flutter_tools project. This will
# go away once we unify `flutter analyze` and analysis server based products.
analyzer:
language:
enableStrictCallChecks: true
enableSuperMixins: true
errors:
todo: ignore
linter:
rules:
- avoid_empty_else
- always_declare_return_types
- always_specify_types
- annotate_overrides
- sort_unnamed_constructors_first
- unnecessary_brace_in_string_interp
- unnecessary_getters_setters
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