问题标签 [atom-beautify]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
3198 浏览

atom-editor - atom-beautify:使用制表符缩进 html

如何将 html 的缩进大小设置为 atom-beautifier 中的制表符?我在 .jscsrc 中尝试了以下内容,但没有任何效果。

0 投票
0 回答
102 浏览

php - Atom.io 上的美化 PHP 返回 Bad Argument 错误

我在使用 Atom.io 时遇到了一个绊脚石,不幸的是,每当我尝试并配置atom-beautify为使用时PHP,它都会返回此堆栈跟踪:

它似乎在这条线上,它试图获取外壳:

at PHPCSFixer.module.exports.Beautifier.getShellEnvironment (/Users/.atom/packages/atom-beautify/src/beautifiers/beautifier.coffee:116:16)

我正在使用 iTerm2,但我不确定为什么这会有所作为!有没有人遇到过这个错误?如果是这样,您是如何解决的?

0 投票
0 回答
51 浏览

javascript - 使用 atom-beautify 缩进变量值

这就是我喜欢构造变量块的方式,尤其是在有很多变量定义的情况下。在大多数情况下,可读性更好:

但是在运行时atom-beautify,它会跳回到:

是否可以.jsbeautifyrc选择使用 atom-beautify 保持这种缩进甚至自动缩进?

0 投票
1 回答
1658 浏览

atom-editor - uncrustify google style c++ config

I am using uncrustify and atom-beautify in atom.io to format my C++ code according to google styling guide. I am using CPPlint to verify whether the code is formatted correctly. I am using the config file from https://gist.githubusercontent.com/philectron/1a1e1ccb06d5643cd61d85fc5ecaf429/raw/8813567b8f7dd49003228e19c3d10719b49995a1/uncrustify-preferences.cfg. But after beautifying, cpplint is reporting the following problems.

  1. "At least two spaces is best between code and comments [whitespace/comments]" is not enforced and I am getting this error in multiple places. The answer for this question at Uncrustify - How do I align trailing comments by two-space gap? is not working.
  2. "protected: should be indented +1 space inside." I am getting the same error for private and public as well.

If this is not the right way, how can I beautify and lint inside atom.io.

0 投票
3 回答
6185 浏览

javascript - 如何将 unrustify 与 atom-beautify 一起使用?

我一直在查看atom-beautify站点和示例 .jsbeauifyrc、.editorconfig 和 uncrustify.cgf 文件。

我还查看了atom-beautify 的选项。我知道我应该指定配置文件在 atom-beautify 设置中的位置。我尝试将一个 .jsbeautifyrc 文件、一个 uncrustify.cfg 文件以及这两个文件放在我在 atom-beautify 设置中指定的同一目录中。它没有任何效果。使用默认设置。我想让一些旧的 C++ 代码对于我当前的项目和我的小组正在从事的未来项目看起来更加统一。

  • 我应该使用哪个文件?
  • 我必须在每个文件中包含什么?
  • 这个/这些文件应该放在哪里?
  • 如何指定路径?
  • 是否还有其他我不知道的更改?

总而言之,我想在 Atom 编辑器中使用 uncrustify(使用 atom-beautify 包)来使我的 C++ 代码看起来不错。

0 投票
0 回答
140 浏览

atom-editor - Atom IDE - 美化 JSX 格式

我在这里看到了关于 Atom IDE 的其他问题,所以我想我会问的。如果有更相关的地方可以发布这样的问题,请告诉我,我会删除并移动它。

我将 Atom 与 A​​tom Beautify 包一起使用。我正在创建 JSX 文件,并且当我运行 beautify 格式不遵循组件道具的 JSX 标准时,它真的很难阅读。

如何将其设置为如下所示的格式?

例子:Desired setting

例子:Current setting

0 投票
8 回答
13220 浏览

php - atom-beautify & php-cs-fixer

我是一个新程序员,我需要你的帮助。我对 Atom 编辑器非常陌生,但是设置了一些不错的软件包,例如 Atom Beautify。在html / php文件中使用它后,我收到错误“找不到'php-cs-fixer'。程序可能没有安装。奇怪的是,我确实安装了包 php-cs-fixer 但是什么都没发生。

我的系统是Windows。

有人知道我该如何解决这个问题吗?

0 投票
1 回答
304 浏览

html - atom 美化器 html 注释

我正在使用 atom 编写 html 和 atom beautify 来格式化代码。它工作得很好,但是有一个问题使我的代码有点混乱。这是我想要的代码:

这是他们使用 atom beautify 制作的代码:

正如你所看到的,它将 html 注释放在一个新行中,然后我的代码中有不必要的行,而且它也不容易立即看到结束标记。有没有办法配置美化器?

0 投票
2 回答
455 浏览

javascript - Atom Beautify 插件破坏了我的 React html

当我只是输入这个文件时,代码就起作用了。使用 Atom 的 Beautify 插件时,代码不起作用。

我正在尝试比较这些文件,但无论如何都找不到我的错误。

哪里可能有问题?可能是美化块转译器之类的?

该文件的要点

0 投票
2 回答
1044 浏览

formatting - 使用 Atom 时在 makdown 文档中格式化(美化)代码块

我开始探索文学编程,这涉及将可执行代码块嵌入到 Markdown 文档中。我目前的工作环境是Atom,带有一个名为markdown-preview-enhanced的包——它支持实时代码块执行,这正是我所需要的。下面是一个例子:

https://user-images.githubusercontent.com/1908863/28716704-4009d43a-7364-11e7-9e46-889f961e5afd.png (在现实生活中,代码被标题、图像等包围)

我缺少的一件事是能够在降价文件中自动格式化代码块,就像我在单独的文件中实现这一点一样(例如,使用 Atom 的美化包)。令人惊讶的是,寻找适用于 Atom 的解决方案并没有给我带来任何帮助。

我的问题是针对那些从事文学编程已有一段时间的人。您会推荐哪些工具来实现文字代码块的格式化?如果没有可以执行此操作的 Atom 包,我可以尝试哪些替代环境?

我计划将来将多种语言嵌入到我的文学编程文档中,因此请随时分享不仅适用于上述 Python 的解决方案。