Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每当提交到 git 时,我们都会使用 IntelliJ 的自动格式化功能来格式化我们的代码。
除了我们的设计师对 IntelliJ 格式化 CSS 文件的方式不满意外,这种格式对我们来说效果很好。有没有办法禁用某些文件类型的自动格式化?
从 IDEA 13 开始,可以使用
/* @formatter:off */
并重新激活
/* @formatter:on */
但是您需要先在 Settings -> Code Style -> General -> Formatter Control 中启用它
您也可以右键单击文件并选择“标记为纯文本”。重新格式化 (Ctrl+Alt+L) 时,这些文件将被排除。
这也适用于 IntelliJ 12。