SublimeLinter 是前端編碼利器——Sublime Text 的一款插件,用於高亮提示用戶編寫的代碼中存在的不規範和錯誤的寫法,支持 JavaScript、CSS、HTML、Java、PHP、Python、Ruby 等十多種開發語言。
安裝SublimeLinter
在Sublime Text3下同時按住ctrl
+shift
+p
,然後輸入install
,選擇Install Package
。
安裝SublimeLinter-php
SublimeLinter-php使用的是php -l 進行的檢查。 This linter plugin for SublimeLinter provides an interface to php -l. It will be used with files that have the “PHP”, “HTML”, or “HTML 5” syntax.
在Sublime Text3下同時按住ctrl
+shift
+p
,然後輸入install
,選擇Install Package
。
其中的mark_style
,表示出錯的顯示樣式,可選的值有"fill"
, "outline"
, "solid underline"
, "squiggly underline"
, "stippled underline"
, 和 "none"
,默認值為outline
,出錯的情況顯示如下。