eslint規則

文件在vue項目的根目錄下 : .eslintrc.js

//代碼須要以分號結束
'semi' : ['error', 'always'],
//取消2個空白縮進
'indent': 0,
//使用製表符縮進
'no-tabs': 'off',
//函數括號以前忽略空格
'space-before-function-paren': 0,
//代碼塊以前忽略空格
'space-before-blocks': 0




/* eslint-disable no-new */ 
//跳過檢測 js文件中 new Vue()
相關文章
相關標籤/搜索