【发布时间】:2016-03-05 20:35:18
【问题描述】:
如何在出现左括号的同一列上为函数等强制使用右括号/括号
例如
// throws error
app.get('/', function (req, response) {
}); // bracket/parentheses is *not on same* column as opening
// this is valid
app.get('/', function (req, response) {
}); // bracket/parentheses is on *same* column as opening
【问题讨论】:
-
您的意思可能是“与出现左括号的行所在的列相同”
标签: javascript coding-style eslint