總結前端開發模式和規範 一、jshint 詳解

jshint是一個javaScript語法和風格的檢查工具,但檢查不出邏輯問題。javascript

安裝
1、在sublime text 中使用jshint插件步驟:
(注:在爲Sublime Text編輯器安裝Sublime-JSHint插件以前,要首先確保安裝了node.js)html

方法1:
1 Ctrl+Shift+P 呼出Sublime命令面板
2 鍵入install,並選擇Package Control:Install Package
3 鍵入js gutter,並選擇JSHint Gutterjava

方法2:
1 獲取Sublime Text,可經過git命令。node

git clone https://github.com/victorporof/Sublime-JSHint.git

2 打開 Sublime Text Package 文件夾。Preferences -> Browse Packages。
3 將步驟1中獲取到的 Sublime-JSHint 文件夾移到 Packages 文件夾中。
4 重啓 Sublime Text。jquery

Sublime-JSHint使用
方法1:由菜單 Tools -> Command Palette(或快捷鍵 Ctrl+Shift+P)打開命令面板。鍵入 jshint 並選擇 JSHint。
方法2:打開一 js 文件,並打開控制檯(View -> Show Console),在控制檯中鍵入 view.run_command("jshint")。
方法3:Ctrl+Shift+J(或者Mac使用Cmd+Shift+J)
方法4:右鍵選擇JSHintgit

設置github

"lint_on_edit": false,

  // Configurable duration before re-linting.
  "lint_on_edit_timeout": 5,

  // Automatically lint when a file is loaded.
  "lint_on_load": false,

  // Automatically lint when a file is saved.
  "lint_on_save": false,

  // Highlight problematic regions when selected.
  "highlight_selected_regions": false,

  // Log the settings passed to JSHint from `.jshintrc`.
  "print_diagnostics": true

配置選項canvas

"strict": true, //嚴格模式 參考文章(http://www.ruanyifeng.com/blog/2013/01/javascript_strict_mode.html)
"asi": true, //容許省略分號(寫上這條,規避檢查出不少警告  能夠去掉)
"bitwise": true, //禁止使用位運算符,好比常常把&&寫錯& 規避此錯誤
"noarg": true, //禁止使用.caller 和 .callee (ECMS5已經禁用了此 能夠去掉)
"eqeqeq": true, //禁止使用== 和 !=  強制使用=== 和 !==
"undef": true, //禁止使用不在全局變量列表中的未定義變量
"curly": true, //循環或者條件語句必須使用花括號包住
"devel": true, //定義用於調試的全局變量:console,alert 
"jquery": true, //定義全局暴露的jQuery庫 (能夠去掉)
"browser": true, //暴露瀏覽器屬性的全局變量 如window document
"evil": true, //禁止使用eval (能夠去掉)
"quotemark":true (商榷)
"globals": {"$":true,"require":true,"FastClick":true,"Swiper"},

編輯器 VS Gulp_jshint
1 我的偏向於在編輯器中使用jshint,這樣不用在每一個項目都配置,同時也能約束項目以外的編輯。
2 在編輯器中使用jshint 比在Gulp_jshint 的更實時,更清晰。jshint有錯誤,會在每一行有提示。然後者會在命令窗口提示,不方便。
3 Gulp_jshint 還須要進一步探查。瀏覽器

項目中一些問題
沒法識別的一些問題:curl

1 //= require chartjs/chart.core (解決掉了)
2 封閉空間上面的(未解決);
3 引入插件的實例化:comRadar = new Chart(ctx).Radar()(解決掉了);
//配置參數
"globals": {"$":true,"require":true,"FastClick":true,"Swiper"},
4  var CardPopup = function(el, opts) {
        this.el = el;
        this.defaults = {};
        this.options = $.extend({}, this.defaults, opts);
    } (此處加封號)
   CardPopup.prototype = {
        init: function() {
            var me = this,
                el = me.el;
            return me;
        },
    } (此處加封號)
    $.fn.CardPopup = function(opts) {
        var com;
    } (此處加封號)
5 A && B  
//要麼寫成 if(A) B
//或者 /* jshint expr: true */
6 jshint 中但願 A.B  而不但願A[B]
7 /* jshint ignore:start */ 
var optionTemplate = Hogan.compile('<ul class="items options clearfix count-{{count}}">\
                                            {{#options}}\
                                            <li class="item option {{#selected}}selected{{/selected}}">\
                                                <div class="pie">\
                                                    <canvas class="canvas-outer" data-percent="{{value}}"></canvas>\
                                                    <div class="num">{{value}}%</div>\
                                                </div>\
                                                <p class="text">{{text}}</p>\
                                            </li>\
                                            {{/options}}\
                                        </ul>');
/* jshint ignore:end */
8  /*jshint scripturl:true*/  
data.top[i].redirect_url = data.top[i].redirect_url || 'javascript:void(0);';
9 $(subscribeData).each(function(index, element) {
    if (element == specialColumnId) {
       elSubscribe.removeClass('icon-jiadingyue').addClass('icon-yidingyue');
      }
   }) (是否加)
10 
/*jshint -W018 */
if (!!elForm.find('[name="comment[parent_id]"]').val() == true) {
      isReplyComment = true;
    }
做者:天外來人連接:https://www.jianshu.com/p/9c26c61da146來源:簡書著做權歸做者全部。商業轉載請聯繫做者得到受權,非商業轉載請註明出處。
相關文章
相關標籤/搜索