91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

詳解Vscode中使用Eslint終極配置大全

發布時間:2020-10-16 19:34:23 來源:腳本之家 閱讀:164 作者:如煙灬 欄目:web開發

在 vue項目中使用vscode編輯時,使用了如下這套配置,保存時就會根據既定vue項目中.eslintrc.js文件設置的既定規則自動校驗并依據規則修復代碼。

需安裝插件

主要是這兩個插件:

  • ESLint
  • Prettier - Code formatter

詳解Vscode中使用Eslint終極配置大全

個人現用vscode插件截圖.png

vscode中setting.json中配置

{
 // vscode默認啟用了根據文件類型自動設置tabsize的選項
 "editor.detectIndentation": false,
 // 重新設定tabsize
 "editor.tabSize": 2,
 // #每次保存的時候自動格式化 
 "editor.formatOnSave": true,
 // #每次保存的時候將代碼按eslint格式進行修復
 "eslint.autoFixOnSave": true,
 // 添加 vue 支持
 "eslint.validate": [
  "javascript",
  "javascriptreact",
  {
   "language": "vue",
   "autoFix": true
  }
 ],
 // #讓prettier使用eslint的代碼格式進行校驗 
 "prettier.eslintIntegration": true,
 // #去掉代碼結尾的分號 
 "prettier.semi": false,
 // #使用帶引號替代雙引號 
 "prettier.singleQuote": true,
 // #讓函數(名)和后面的括號之間加個空格
 "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
 // #這個按用戶自身習慣選擇 
 "vetur.format.defaultFormatter.html": "js-beautify-html",
 // #讓vue中的js按編輯器自帶的ts格式進行格式化 
 "vetur.format.defaultFormatter.js": "vscode-typescript",
 "vetur.format.defaultFormatterOptions": {
  "js-beautify-html": {
   "wrap_attributes": "force-aligned"
   // #vue組件中html代碼格式化樣式
  }
 },
 // 格式化stylus, 需安裝Manta's Stylus Supremacy插件
 "stylusSupremacy.insertColons": false, // 是否插入冒號
 "stylusSupremacy.insertSemicolons": false, // 是否插入分好
 "stylusSupremacy.insertBraces": false, // 是否插入大括號
 "stylusSupremacy.insertNewLineAroundImports": false, // import之后是否換行
 "stylusSupremacy.insertNewLineAroundBlocks": false,
 "window.zoomLevel": 0 // 兩個選擇器中是否換行
}

vue項目中.eslintrc.js文件常用個性化配置

// https://eslint.org/docs/user-guide/configuring

module.exports = {
 root: false,
 parserOptions: {
  parser: 'babel-eslint'
 },
 env: {
  browser: true
 },
 extends: [
  // https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
  // consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
  'plugin:vue/essential',
  // https://github.com/standard/standard/blob/master/docs/RULES-en.md
  'standard'
 ],
 // required to lint *.vue files
 plugins: ['vue'],
 // add your custom rules here
 rules: {
  // allow async-await
  'generator-star-spacing': 'off',
  // allow debugger during development
  'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
  eqeqeq: 'off', // 不能始用==
  'no-unused-vars': 'off', // 消除未使用的變量
  'no-undef': 'off', // 未使用變量報錯
  'no-unreachable': 'off' // 不能執行的代碼檢測
   //此處一下還可以根據個人習慣設置更多個性化內容
 }
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

连平县| 贺州市| 盈江县| 诏安县| 张掖市| 秦安县| 西青区| 获嘉县| 达拉特旗| 财经| 巩留县| 应城市| 新建县| 阜城县| 钦州市| 东乡族自治县| 万山特区| 丽江市| 长春市| 天峨县| 双桥区| 海阳市| 和林格尔县| 嘉祥县| 临高县| 赤城县| 大宁县| 拜城县| 冀州市| 昆明市| 忻城县| 合山市| 乌兰浩特市| 浮山县| 温宿县| 龙州县| 东宁县| 霸州市| 聊城市| 博乐市| 尼勒克县|