0
我想使用erl_tidy格式化erlang代碼,包括escript文件。 但是,當我在添加-module(erl_pprint)
後格式化一個escript文件(source)時,會出現此問題。 :erl_tidy無法確定escript的模塊名稱
1> erl_tidy:file("erl_pprint").
erl_pprint: error: cannot determine module name.
** exception exit: error
但是當我刪除了她邦線#!/usr/bin/env escript
,格式化順利。 那麼如何在保持she-bang行的同時格式化代碼呢?
好的,我發現沒有其他辦法做到這一點,但刪除了她的爆炸線。 – schemacs