0
我在JS中有一個小腳本,它給了我無法察覺的煩人錯誤。Javascript Lint錯誤
(function() {
'use strict';
angular
.module('frontend')
.config(config);
config.$inject = ['$logProvider'];
function config($logProvider) {
// Enable log
$logProvider.debugEnabled(true);
}
})();
它們與代碼風格與功能:
2:10 error Missing space before function parentheses space-before-function-paren
9:1 error Block must not be padded by blank lines padded-blocks
誰能幫我看看有什麼空間參考錯誤?
是2號線與'「用嚴格的」行了;'? –
你好。是的,那是第2行 –
是第9行的評論?嘗試刪除它? – LYu