- 31 May, 2017 1 commit
-
-
Todd Volkert authored
The lint ensures that the prefix you use in your "import ... as" directive conforms to lowercase_with_underscores style. However, generated code often doesn't, since it may use preceding underscores for collision avoidance, or directly use locale codes in the prefixes.
-
- 10 May, 2017 1 commit
-
-
Hans Muller authored
-
- 20 Apr, 2017 1 commit
-
-
Kasper Lund authored
-
- 17 Mar, 2017 1 commit
-
-
Phil Quitslund authored
Fixes: #8783
-
- 16 Mar, 2017 1 commit
-
-
Phil Quitslund authored
Fixes: https://github.com/flutter/flutter-intellij/issues/808
-
- 13 Feb, 2017 2 commits
-
-
Phil Quitslund authored
Fixes: #8087.
-
Dan Rubel authored
* move flutter user analysis options file * add comments referencing each of the analysis options files
-
- 22 Nov, 2016 1 commit
-
-
Devon Carew authored
-
- 07 Oct, 2016 1 commit
-
-
Adam Barth authored
This patch adds `@checked` everywhere is needed to remove the `strong_mode_invalid_method_override` strong mode error.
-
- 15 Sep, 2016 1 commit
-
-
Dan Rubel authored
This moves all of the various .analysis_options* files to the flutter repo root so that it's easier to * remember to keep them all in sync, and * easily refer customers to them
-
- 09 Sep, 2016 1 commit
-
-
Dan Rubel authored
This aligns the comments and fixes some misspellings in the three related analysis options files. There will be a follow on PR with more controversial changes to the repo level analysis options.
-
- 08 Sep, 2016 1 commit
-
-
Dan Rubel authored
update the analysis options used by flutter analyze when analyzing source outside of the flutter repo.
-
- 29 Jul, 2016 1 commit
-
-
Phil Quitslund authored
* Adds `empty_statements` (new in `0.1.21`). * (Re)enables `iterable_contains_unrelated_type` (fixed in linter#245).
-
- 20 May, 2016 1 commit
-
-
Ian Hickson authored
-
- 17 May, 2016 1 commit
-
-
pq authored
-
- 16 May, 2016 1 commit
-
-
pq authored
SInce this is a subset of `always_specify_types` I think we can safely remove it. In practice, if you violate you get doubly nagged: ``` [lint] Type annotate public APIs. (packages/flutter_tools/lib/src/dart/runner.dart, line 5, col 1) [lint] Declare method return types. (packages/flutter_tools/lib/src/dart/runner.dart, line 5, col 1) ``` One warning is probably enough to get the message across? ;)
-
- 13 May, 2016 1 commit
-
-
pq authored
-
- 12 May, 2016 1 commit
-
-
pq authored
It's safe to remove the unneeded `void`s from setters since the blocking issues in the `always_declare_return_types` lint have been fixed (https://github.com/dart-lang/linter/). We can also safely flip the bit on `avoid_return_types_on_setters`.
-
- 28 Apr, 2016 1 commit
-
-
Adam Barth authored
Related to #3608
-
- 11 Apr, 2016 1 commit
-
-
pq authored
As per https://github.com/dart-lang/sdk/issues/25723, moves last command-line flag to `.analysis_options`.
-
- 08 Apr, 2016 1 commit
-
-
Devon Carew authored
-
- 04 Apr, 2016 1 commit
-
-
Ian Hickson authored
* Enable the lint require documentation. * Track how many public Flutter members lack docs * Rename the .analysis_options file This makes Atom happier in the flutter_tools package.
-
- 14 Mar, 2016 4 commits
-
-
Hixie authored
-
Hixie authored
Also, some minor cleanup in activity.dart, though much more is needed (see https://github.com/flutter/flutter/issues/2668).
-
Hixie authored
-
Ian Hickson authored
-
- 12 Mar, 2016 2 commits
- 11 Mar, 2016 3 commits
-
-
pq authored
More groundwork to get `analyze` and IDE output to agree. See: https://github.com/dart-lang/sdk/issues/25723
-
Ian Hickson authored
Well, all the easy ones, anyway. For some reason `// ignore:` isn't working for me so I've disabled lints that need that. Also disabled those that require a ton of work (which I'm doing, but not in this PR, to keep it reviewable). This adds: - avoid_init_to_null - library_names - package_api_docs - package_names - package_prefixed_library_names - prefer_is_not_empty - sort_constructors_first - sort_unnamed_constructors_first - unnecessary_getters_setters
-
Hixie authored
Since we removed our operator== overload, we can now allow people to put these in collections again. Also, turn on two more analyzer lints: avoid_empty_else and hash_and_equals.
-
- 10 Mar, 2016 1 commit
-
-
Devon Carew authored
-