前端代码格式化工具 Prettier
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://prettier.io/playground/
- 软件文档: https://github.com/prettier/prettier
- 官方下载: https://github.com/prettier/prettier
软件介绍
Prettier 是一个“有主见”的代码格式化工具,支持列表如下:
简而言之,这个工具能够使输出代码保持风格一致。
示例:
举个例子,对于下面这行代码:
foo(arg1, arg2, arg3, arg4);
它适合在同一行显示。但是我们经常会遇到的代码是这样的:
foo(reallyLongArg(), omgSoManyParameters(), IShouldRefactorThis(), isThereSeriouslyAnotherOne());
于是,Prettier 会把这段代码转变成这样:
foo( reallyLongArg(), omgSoManyParameters(), IShouldRefactorThis(), isThereSeriouslyAnotherOne() );
Data Structures and Algorithms in Python
Michael T. Goodrich、Roberto Tamassia、Michael H. Goldwasser / John Wiley & Sons / 2013-7-5 / GBP 121.23
Based on the authors' market leading data structures books in Java and C++, this book offers a comprehensive, definitive introduction to data structures in Python by authoritative authors. Data Struct......一起来看看 《Data Structures and Algorithms in Python》 这本书的介绍吧!
