前端代码格式化工具 Prettier

软件介绍

Prettier 是一个“有主见”的代码格式化工具,支持列表如下:

简而言之,这个工具能够使输出代码保持风格一致。

示例:

举个例子,对于下面这行代码:

foo(arg1, arg2, arg3, arg4);

它适合在同一行显示。但是我们经常会遇到的代码是这样的:

foo(reallyLongArg(), omgSoManyParameters(), IShouldRefactorThis(), isThereSeriouslyAnotherOne());

于是,Prettier 会把这段代码转变成这样:

foo(
  reallyLongArg(),
  omgSoManyParameters(),
  IShouldRefactorThis(),
  isThereSeriouslyAnotherOne()
);

本文地址:https://codercto.com/soft/d/20422.html

Python Machine Learning

Python Machine Learning

Sebastian Raschka / Packt Publishing - ebooks Account / 2015-9 / USD 44.99

About This Book Leverage Python' s most powerful open-source libraries for deep learning, data wrangling, and data visualization Learn effective strategies and best practices to improve and opti......一起来看看 《Python Machine Learning》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具