Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Side by Side Diff: pubspec.yaml

Issue 2196863002: Format parameter lists with trailing commas like argument lists. (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 name: dart_style 1 name: dart_style
2 # Note: See tool/grind.dart for how to bump the version. 2 # Note: See tool/grind.dart for how to bump the version.
3 version: 0.2.7 3 version: 0.2.8
4 author: Dart Team <misc@dartlang.org> 4 author: Dart Team <misc@dartlang.org>
5 description: Opinionated, automatic Dart source code formatter. 5 description: Opinionated, automatic Dart source code formatter.
6 homepage: https://github.com/dart-lang/dart_style 6 homepage: https://github.com/dart-lang/dart_style
7 environment: 7 environment:
8 sdk: ">=1.8.0 <2.0.0" 8 sdk: ">=1.8.0 <2.0.0"
9 dependencies: 9 dependencies:
10 analyzer: '^0.27.4-alpha.17' 10 analyzer: '^0.27.4-alpha.17'
11 args: '>=0.12.1 <0.14.0' 11 args: '>=0.12.1 <0.14.0'
12 path: '>=1.0.0 <2.0.0' 12 path: '>=1.0.0 <2.0.0'
13 source_span: '>=1.1.1 <2.0.0' 13 source_span: '>=1.1.1 <2.0.0'
14 14
15 dev_dependencies: 15 dev_dependencies:
16 async: '>=1.0.0 <=2.0.0' 16 async: '>=1.0.0 <=2.0.0'
17 browser: '>=0.10.0 <0.11.0' 17 browser: '>=0.10.0 <0.11.0'
18 grinder: '^0.8.0' 18 grinder: '^0.8.0'
19 js: ^0.6.0 19 js: ^0.6.0
20 node_preamble: ^1.0.0 20 node_preamble: ^1.0.0
21 pub_semver: '^1.2.3' 21 pub_semver: '^1.2.3'
22 scheduled_test: '>=0.12.0 <0.13.0' 22 scheduled_test: '>=0.12.0 <0.13.0'
23 test: '>=0.12.0 <0.13.0' 23 test: '>=0.12.0 <0.13.0'
24 yaml: '^2.0.0' 24 yaml: '^2.0.0'
25 executables: 25 executables:
26 dartfmt: format 26 dartfmt: format
27 dartformat: format # Allow the old name for compatibility. 27 dartformat: format # Allow the old name for compatibility.
28 # Tell the bots not to bother building the tests since they don't run in a 28 # Tell the bots not to bother building the tests since they don't run in a
29 # browser anyway. 29 # browser anyway.
30 transformers: 30 transformers:
31 - $dart2js: 31 - $dart2js:
32 $exclude: 'test/**' 32 $exclude: 'test/**'
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698