运行unrustify后,我不希望任何行都超过80个字符。如何在取消配置文件中设置一行的最大长度?
答案 0 :(得分:1)
将这样的部分添加到您的配置文件中。它不能保证所有行都低于指定的宽度。
package prueba;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class Prueba {
public static void main(String[] args) {
WebDriver driver= new FirefoxDriver();
driver.get("https://www.google.com/");
}
}