summaryrefslogtreecommitdiff
path: root/.dprintrc.json
AgeCommit message (Collapse)Author
2021-05-06chore: upgrade dprint 0.13.1 to fix CI. (#10513)David Sherret
2021-04-28chore: upgrade dprint plugins (#10397)Satya Rohith
2021-04-26feat: Support deno-fmt-ignore-file for markdown formatting (#10191)David Sherret
2021-04-04chore(cli): Upgrade jsonc_parser to 0.17 (#9977)David Sherret
Use new parse_to_serde_value as it's faster and less code here.
2021-03-10fix(fmt): Correctly format hard breaks in markdown (#9742)David Sherret
2021-02-22chore: upgrade internal dprint plugins (#9566)Satya Rohith
Co-authored-by: David Sherret <dsherret@gmail.com>
2021-02-18feat: add json(c) support to deno fmt (#9292)Satya Rohith
This commit adds support for formatting JSON and JSONC in "deno fmt". New values "json" and "jsonc" are added to "--ext" flag for standard input processing.
2021-02-02chore: remove std directory (#9361)Casper Beyer
This removes the std folder from the tree. Various parts of the tests are pretty tightly dependent on std (47 direct imports and 75 indirect imports, not counting the cli tests that use them as fixtures) so I've added std as a submodule for now.
2021-01-27tests: new typescript WPT runner (#9269)Luca Casonato
2021-01-19feat: add markdown support to deno fmt (#8887)Satya Rohith
This commit adds support for formatting markdown files with "deno fmt". Additionally "--ext={js|jsx|ts|tsx|md}" flag was added to "deno fmt" that allows to specify file type when providing contents over stdio.
2021-01-06fix: use inline source maps when present in js (#8995)Luca Casonato
2021-01-05tests: add web platform test runner (#8990)Luca Casonato
Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
2020-11-25build: upgrade dprint to 0.10.0 (#8494)Bartek Iwańczuk
2020-11-09chore: reference dprint config file in format script (#8318)Bartek Iwańczuk
* chore: reference dprint config file in format script * chore: ignore .git folder in dprint config
2020-09-27feat(fmt): Sort named import and export specifiers (#7711)David Sherret
2020-09-25refactor: class instead of var+interface in d.ts (#7514)Luca Casonato
2020-08-18Upgrade third_party and dprint plugins. (#7097)David Sherret
2020-08-03fix(cli): add support for non-UTF8 source files (#6789)Maayan Hanin
Fixes: #5542
2020-07-22Use incremental formatting internally for dprint (#6815)David Sherret
2020-07-22Reduce size of TypeScript Compiler snapshot (#6809)Ryan Dahl
This PR is intentionally ugly. It duplicates all of the code in cli/js2/ into cli/tsc/ ... because it's very important that we all understand that this code is unnecessarily duplicated in our binary. I hope this ugliness provides the motivation to clean it up. The typescript git submodule is removed, because it's a very large repo and contains all sorts of stuff we don't need. Instead the necessary files are copied directly into the deno repo. Hence +200k lines. COMPILER_SNAPSHOT.bin size ``` master 3448139 this branch 3320972 ``` Fixes #6812
2020-07-20Remove deno_typescript (#6813)Ryan Dahl
2020-07-16Update dprint. Also ignore gh-pages dir. (#6778)David Sherret
2020-07-14Use dprint for internal formatting (#6682)David Sherret