我改变了我的编码风格
function getParams(entity) {
"use strict";
var accountID = store.getItem('AccountID'),
switch (entity) {
case "Topic":
至
function getParams(entity)
{
"use strict";
var accountID = store.getItem('AccountID'),
switch (entity)
{
case "Topic":
现在我收到任何 jslint 错误,例如:
警告 6 JS Lint:在 ')' 和 '{' 之间需要一个空格。警告 9 JS Lint:第 9 列应为“var”,而不是第 5 列。
我检查了选项,但找不到任何取消选择与行位置相关的选项。另外,如果有的话,我可以将它添加到我的文件顶部吗?