我有一個問題,同時建立使用咕嚕來源,與JSLint的任務錯誤檢查:JSLint的錯誤:「預期在EOF換行」,以美化插件衝突
L177: Expected a newline at the end of the file. Warning: Formatting check failed. Use --force to continue. Aborted due to warnings.
的問題是顯而易見的,但我還使用從支架的美化插件:https://github.com/drewhamlett/brackets-beautify在默認情況下刪除從文件末尾所有新線。
在Gruntfile.js
我的JSLint的任務配置:
jslint: {
server: {
src: [
'<%= config.PATH %>/src/**/*.js',
],
directives: {
indent: 4,
plusplus: true,
unparam: true,
todo: true,
globals: [
'angular'
]
},
options: {
edition: 'latest', // specify an edition of jslint or use 'dir/mycustom-jslint.js' for own path
errorsOnly: true, // only display errors
failOnError: true // defaults to true
}
}
}
我的問題是,如何改變Gruntfile.js的JSLint的配置忽略換行符在EOF或迫使美化插件添加(或簡單地不要刪除)文件末尾的新行?
它爲什麼重要到你,如果有一個新行不? – dandavis
@dandavis因爲他得到一個錯誤,否則? – Siguza
lint向編碼員提供建議。如果你知道它在說什麼,可以忽略這些建議。編碼在自動化工作流程中傳遞每一個小毛刺並不是真正的預期用途...說,嘗試放鬆凌亂的空白選項。 – dandavis