├── .github ├── CONTRIBUTING.md └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── README.md ├── RELEASE.md ├── StyleGuide.md ├── doc ├── ErlangFormatterComparison.md ├── FormattingDecisionAssociative.md ├── FormattingDecisionCommas.md ├── FormattingDecisionComments.md ├── FormattingDecisionComments │ ├── Makefile │ ├── Readme.md │ ├── columns.html │ ├── columns.py │ ├── columns.sh │ ├── module_comments.md │ ├── module_comments.sh │ ├── types.md │ └── types.py ├── FormattingDecisionDefaultWidth.md ├── FormattingDecisionDefaultWidthOtpPlot.png ├── FormattingDecisionDefaultWidthWhatsAppPlot.png ├── FormattingDecisionIgnore.md ├── FormattingDecisionListComprehensions.md ├── FormattingDecisionLists.md ├── FormattingDecisionPipes.md ├── FormattingDecisionSpaces.md ├── FormattingDecisionWhenMultilineGuards.md ├── Readme.md ├── RebarUsage.md ├── clone_inaka.sh └── erlfmt_parse.md ├── erlang_ls.config ├── rebar.config ├── rebar.lock ├── src ├── erlfmt.app.src ├── erlfmt.erl ├── erlfmt_algebra.erl ├── erlfmt_cli.erl ├── erlfmt_format.erl ├── erlfmt_parse.yrl ├── erlfmt_recomment.erl ├── erlfmt_scan.erl ├── erlfmt_scan.hrl └── rebar3_fmt_prv.erl └── test ├── assert_diagnostic.erl ├── assert_diagnostic.hrl ├── assert_diagnostic_SUITE.erl ├── erlfmt_SUITE.erl ├── erlfmt_SUITE_data ├── attributes.erl ├── big_binary.erl ├── broken.erl ├── broken.erl.formatted ├── comments.erl ├── comments.erl.formatted ├── empty.erl ├── emulator_args.escript ├── emulator_args2.escript ├── emulator_args_module.escript ├── escript.erl ├── ignore_format.erl ├── ignore_format.erl.formatted ├── ignore_format_many.erl ├── ignore_format_many.erl.formatted ├── ignore_format_many_old.erl ├── ignore_format_many_old.erl.formatted ├── ignore_format_old.erl ├── ignore_format_old.erl.formatted ├── no_pragma.erl ├── otp_examples.erl ├── otp_examples.erl.formatted ├── overlong.erl ├── overlong.erl.formatted ├── pragma.erl ├── rebar.config.script ├── sigil_crash.erl ├── simple_comments.erl ├── tripple_crash.erl ├── tripple_string.erl ├── tripple_string.erl.formatted └── unicode.erl ├── erlfmt_algebra_SUITE.erl ├── erlfmt_cli_SUITE.erl ├── erlfmt_cli_SUITE_data ├── attributes.erl ├── broken.erl ├── comments.erl ├── escript.erl ├── no_pragma.erl ├── noformat.erl ├── pragma.erl ├── subdir │ ├── formatted.erl │ └── unformatted.erl └── unicode.erl ├── erlfmt_format_SUITE.erl └── erlfmt_markdown_SUITE.erl /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/RELEASE.md -------------------------------------------------------------------------------- /StyleGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/StyleGuide.md -------------------------------------------------------------------------------- /doc/ErlangFormatterComparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/ErlangFormatterComparison.md -------------------------------------------------------------------------------- /doc/FormattingDecisionAssociative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionAssociative.md -------------------------------------------------------------------------------- /doc/FormattingDecisionCommas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionCommas.md -------------------------------------------------------------------------------- /doc/FormattingDecisionComments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionComments.md -------------------------------------------------------------------------------- /doc/FormattingDecisionComments/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionComments/Makefile -------------------------------------------------------------------------------- /doc/FormattingDecisionComments/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionComments/Readme.md -------------------------------------------------------------------------------- /doc/FormattingDecisionComments/columns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionComments/columns.html -------------------------------------------------------------------------------- /doc/FormattingDecisionComments/columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionComments/columns.py -------------------------------------------------------------------------------- /doc/FormattingDecisionComments/columns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionComments/columns.sh -------------------------------------------------------------------------------- /doc/FormattingDecisionComments/module_comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionComments/module_comments.md -------------------------------------------------------------------------------- /doc/FormattingDecisionComments/module_comments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionComments/module_comments.sh -------------------------------------------------------------------------------- /doc/FormattingDecisionComments/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionComments/types.md -------------------------------------------------------------------------------- /doc/FormattingDecisionComments/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionComments/types.py -------------------------------------------------------------------------------- /doc/FormattingDecisionDefaultWidth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionDefaultWidth.md -------------------------------------------------------------------------------- /doc/FormattingDecisionDefaultWidthOtpPlot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionDefaultWidthOtpPlot.png -------------------------------------------------------------------------------- /doc/FormattingDecisionDefaultWidthWhatsAppPlot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionDefaultWidthWhatsAppPlot.png -------------------------------------------------------------------------------- /doc/FormattingDecisionIgnore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionIgnore.md -------------------------------------------------------------------------------- /doc/FormattingDecisionListComprehensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionListComprehensions.md -------------------------------------------------------------------------------- /doc/FormattingDecisionLists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionLists.md -------------------------------------------------------------------------------- /doc/FormattingDecisionPipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionPipes.md -------------------------------------------------------------------------------- /doc/FormattingDecisionSpaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionSpaces.md -------------------------------------------------------------------------------- /doc/FormattingDecisionWhenMultilineGuards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/FormattingDecisionWhenMultilineGuards.md -------------------------------------------------------------------------------- /doc/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/Readme.md -------------------------------------------------------------------------------- /doc/RebarUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/RebarUsage.md -------------------------------------------------------------------------------- /doc/clone_inaka.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/clone_inaka.sh -------------------------------------------------------------------------------- /doc/erlfmt_parse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/doc/erlfmt_parse.md -------------------------------------------------------------------------------- /erlang_ls.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/erlang_ls.config -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/rebar.config -------------------------------------------------------------------------------- /rebar.lock: -------------------------------------------------------------------------------- 1 | []. 2 | -------------------------------------------------------------------------------- /src/erlfmt.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/src/erlfmt.app.src -------------------------------------------------------------------------------- /src/erlfmt.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/src/erlfmt.erl -------------------------------------------------------------------------------- /src/erlfmt_algebra.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/src/erlfmt_algebra.erl -------------------------------------------------------------------------------- /src/erlfmt_cli.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/src/erlfmt_cli.erl -------------------------------------------------------------------------------- /src/erlfmt_format.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/src/erlfmt_format.erl -------------------------------------------------------------------------------- /src/erlfmt_parse.yrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/src/erlfmt_parse.yrl -------------------------------------------------------------------------------- /src/erlfmt_recomment.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/src/erlfmt_recomment.erl -------------------------------------------------------------------------------- /src/erlfmt_scan.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/src/erlfmt_scan.erl -------------------------------------------------------------------------------- /src/erlfmt_scan.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/src/erlfmt_scan.hrl -------------------------------------------------------------------------------- /src/rebar3_fmt_prv.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/src/rebar3_fmt_prv.erl -------------------------------------------------------------------------------- /test/assert_diagnostic.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/assert_diagnostic.erl -------------------------------------------------------------------------------- /test/assert_diagnostic.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/assert_diagnostic.hrl -------------------------------------------------------------------------------- /test/assert_diagnostic_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/assert_diagnostic_SUITE.erl -------------------------------------------------------------------------------- /test/erlfmt_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE.erl -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/attributes.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/attributes.erl -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/big_binary.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/big_binary.erl -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/broken.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/broken.erl -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/broken.erl.formatted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/broken.erl.formatted -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/comments.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/comments.erl -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/comments.erl.formatted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/comments.erl.formatted -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/empty.erl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/emulator_args.escript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/emulator_args.escript -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/emulator_args2.escript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/emulator_args2.escript -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/emulator_args_module.escript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/emulator_args_module.escript -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/escript.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/escript.erl -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/ignore_format.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/ignore_format.erl -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/ignore_format.erl.formatted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/ignore_format.erl.formatted -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/ignore_format_many.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/ignore_format_many.erl -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/ignore_format_many.erl.formatted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/ignore_format_many.erl.formatted -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/ignore_format_many_old.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/ignore_format_many_old.erl -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/ignore_format_many_old.erl.formatted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/ignore_format_many_old.erl.formatted -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/ignore_format_old.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/ignore_format_old.erl -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/ignore_format_old.erl.formatted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/ignore_format_old.erl.formatted -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/no_pragma.erl: -------------------------------------------------------------------------------- 1 | -module(no_pragma). % "שלום עולם" non-unicode trailing comment 2 | -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/otp_examples.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/otp_examples.erl -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/otp_examples.erl.formatted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/otp_examples.erl.formatted -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/overlong.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/overlong.erl -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/overlong.erl.formatted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/overlong.erl.formatted -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/pragma.erl: -------------------------------------------------------------------------------- 1 | %% % @format 2 | 3 | -module(pragma). 4 | -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/rebar.config.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/rebar.config.script -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/sigil_crash.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/sigil_crash.erl -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/simple_comments.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/simple_comments.erl -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/tripple_crash.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/tripple_crash.erl -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/tripple_string.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/tripple_string.erl -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/tripple_string.erl.formatted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/tripple_string.erl.formatted -------------------------------------------------------------------------------- /test/erlfmt_SUITE_data/unicode.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_SUITE_data/unicode.erl -------------------------------------------------------------------------------- /test/erlfmt_algebra_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_algebra_SUITE.erl -------------------------------------------------------------------------------- /test/erlfmt_cli_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_cli_SUITE.erl -------------------------------------------------------------------------------- /test/erlfmt_cli_SUITE_data/attributes.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_cli_SUITE_data/attributes.erl -------------------------------------------------------------------------------- /test/erlfmt_cli_SUITE_data/broken.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_cli_SUITE_data/broken.erl -------------------------------------------------------------------------------- /test/erlfmt_cli_SUITE_data/comments.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_cli_SUITE_data/comments.erl -------------------------------------------------------------------------------- /test/erlfmt_cli_SUITE_data/escript.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_cli_SUITE_data/escript.erl -------------------------------------------------------------------------------- /test/erlfmt_cli_SUITE_data/no_pragma.erl: -------------------------------------------------------------------------------- 1 | -module(no_pragma). % "שלום עולם" non-unicode trailing comment 2 | -------------------------------------------------------------------------------- /test/erlfmt_cli_SUITE_data/noformat.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_cli_SUITE_data/noformat.erl -------------------------------------------------------------------------------- /test/erlfmt_cli_SUITE_data/pragma.erl: -------------------------------------------------------------------------------- 1 | %% % @format 2 | 3 | -module(pragma). 4 | -------------------------------------------------------------------------------- /test/erlfmt_cli_SUITE_data/subdir/formatted.erl: -------------------------------------------------------------------------------- 1 | -module(formatted). 2 | -------------------------------------------------------------------------------- /test/erlfmt_cli_SUITE_data/subdir/unformatted.erl: -------------------------------------------------------------------------------- 1 | -module( unformatted). 2 | -------------------------------------------------------------------------------- /test/erlfmt_cli_SUITE_data/unicode.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_cli_SUITE_data/unicode.erl -------------------------------------------------------------------------------- /test/erlfmt_format_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_format_SUITE.erl -------------------------------------------------------------------------------- /test/erlfmt_markdown_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/erlfmt/HEAD/test/erlfmt_markdown_SUITE.erl --------------------------------------------------------------------------------