[go: up one dir, main page]
More Web Proxy on the site http://driver.im/

タグ

formatterに関するn-segaのブックマーク (2)

  • Xcodeでフォーマット

    個人的にソースコードは見やすく書きたいタイプの人間なのですが、Xcodeにはフォーマット機能がありません。 調べたところ、外部のコード整形プログラムUncrustifyを使用して、それをXcodeから呼び出す形で実現できるようなので、フォーマットできるようになるまでの備忘録として書いておきます。 Uncrustifyのインストール githubにソースコードが上がっていたのでそれをダウンロード、configure、make、installします。 $ cd ~/Desktop/bengardner-uncrustify-20b21c2/ $ ./configure $ make $ sudo make install 成功すると /usr/local/bin/uncrustify にインストールされます。 また、ビルドしたuncrustifyディレクトリのtests/configには、サン

  • PHP Coding Standards Fixer

    PHP Coding Standards Fixer¶ The PHP Coding Standards Fixer (PHP CS Fixer) tool fixes your code to follow standards; whether you want to follow PHP coding standards as defined in the PSR-1, PSR-2, etc., or other community driven ones like the Symfony one. You can also define your (team’s) style through configuration. It can modernize your code (like converting the pow function to the ** operator on

  • 1