OLD | NEW |
| (Empty) |
1 name: dart_style | |
2 version: 0.2.0 | |
3 author: Dart Team <misc@dartlang.org> | |
4 description: Opinionated, automatic Dart source code formatter. | |
5 homepage: https://github.com/dart-lang/dart_style | |
6 environment: | |
7 sdk: ">=1.8.0 <2.0.0" | |
8 dependencies: | |
9 analyzer: '>=0.25.0 <0.27.0' | |
10 args: '>=0.12.1 <0.14.0' | |
11 collection: '^1.0.0' | |
12 path: '>=1.0.0 <2.0.0' | |
13 source_span: '>=1.1.1 <2.0.0' | |
14 dev_dependencies: | |
15 browser: '>=0.10.0 <0.11.0' | |
16 scheduled_test: '>=0.12.0 <0.13.0' | |
17 test: '>=0.12.0 <0.13.0' | |
18 executables: | |
19 dartfmt: format | |
20 dartformat: format # Allow the old name for compatibility. | |
21 # Tell the bots not to bother building the tests since they don't run in a | |
22 # browser anyway. | |
23 transformers: | |
24 - $dart2js: | |
25 $exclude: 'test/**' | |
OLD | NEW |