婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > 自己的vscode-settings.json配置詳解

自己的vscode-settings.json配置詳解

熱門標簽:suitecrm 地圖標注 銀川語音外呼系統(tǒng)中心 高德地圖標注常顯 臨沂ai電銷機器人招商 揭陽電腦外呼系統(tǒng)公司 外呼系統(tǒng)號顯示星號怎么看 華創(chuàng)e路航彩票銷售點地圖標注 鶴壁外呼系統(tǒng)公司 承德地圖標注公司收費

vscode從插件庫里安裝eslint和prettier

實現(xiàn)自動格式化

{
 // 是否允許自定義的snippet片段提示
 "editor.snippetSuggestions": "top",
 // vscode默認啟用了根據(jù)文件類型自動設(shè)置tabsize的選項
 "editor.detectIndentation": false,
 // 重新設(shè)定tabsize
 "editor.tabSize": 2,
 // #每次保存的時候自動格式化 
 "editor.formatOnSave": false,
 // #每次保存的時候?qū)⒋a按eslint格式進行修復(fù)
 "eslint.autoFixOnSave": true,
 "editor.fontWeight": "400",
 "editor.formatOnType": false,
 "workbench.iconTheme": "material-icon-theme",
 "git.confirmSync": false,
 "team.showWelcomeMessage": false,
 "window.zoomLevel": 0,
 "editor.renderWhitespace": "boundary",
 "editor.cursorBlinking": "smooth",
 "editor.minimap.enabled": true,
 "editor.minimap.renderCharacters": false,
 "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
 "editor.codeLens": true,
 //eslint 代碼自動檢查相關(guān)配置
 "eslint.enable": true,
 "eslint.run": "onType",
 "eslint.options": {
 "extensions": [
  ".js",
  ".vue"
 ]
 },
 // 添加 vue 支持
 "eslint.validate": [
 "javascriptreact",
 "vue",
 "javascript",
 {
  "language": "vue",
  "autoFix": true
 },
 "html",
 {
  "language": "html",
  "autoFix": true
 }
 ],
 // #讓prettier使用eslint的代碼格式進行校驗 
 "prettier.eslintIntegration": true,
 // #去掉代碼結(jié)尾的分號 
 "prettier.semi": false,
 // #使用帶引號替代雙引號 
 "prettier.singleQuote": true,
 // #讓函數(shù)(名)和后面的括號之間加個空格
 "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
 // #這個按用戶自身習(xí)慣選擇 
 "vetur.format.defaultFormatter.html": "js-beautify-html",
 // #讓vue中的js按編輯器自帶的ts格式進行格式化 
 "vetur.format.defaultFormatter.js": "vscode-typescript",
 "explorer.confirmDelete": false,
 "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, // 兩個選擇器中是否換行
 "files.associations": {
 "*.cjson": "jsonc",
 "*.wxss": "css",
 "*.wxs": "javascript"
 },
 "emmet.includeLanguages": {
 "wxml": "html"
 },
 "minapp-vscode.disableAutoConfig": true,
 "window.menuBarVisibility": "visible",
 "git.enableSmartCommit": true,
 "git.autofetch": true,
 "liveServer.settings.donotShowInfoMsg": true,
 "[html]": {
 "editor.defaultFormatter": "vscode.html-language-features"
 },
 "javascript.updateImportsOnFileMove.enabled": "always",
 "workbench.colorTheme": "SynthWave '84",
 "editor.fontSize": 18,
 "search.followSymlinks": false,
 "workbench.sideBar.location": "right",
 "vscode_custom_css.policy": true,
 "vscode_custom_css.imports": [
 "file:///C:/Users/wongseedling/Desktop/vscode-transparent-glow/synthwave84.css",
 "file:///C:/Users/wongseedling/Desktop/vscode-transparent-glow/toolbar.css",
 "file:///C:/Users/wongseedling/Desktop/vscode-transparent-glow/vscode-vibrancy-style.css",
 "file:///C:/Users/wongseedling/Desktop/vscode-transparent-glow/enable-electron-vibrancy.js",
 ],
 // 高亮的顏色,emm暫時只支持這樣寫
 "wxmlConfig.activeColor": {
 "color": "#e5c07b"
 },
 // 是否禁用高亮組件
 "wxmlConfig.activeDisable": false,
 // 是否開啟保存自動格式化
 "wxmlConfig.onSaveFormat": false,
 "wxmlConfig.format": {
 "brace_style": "collapse",
 "end_with_newline": false,
 "indent_char": "",
 "indent_handlebars": false,
 "indent_inner_html": false,
 "indent_scripts": "keep",
 "indent_size": 2,
 "indent_with_tabs": true,
 "max_preserve_newlines": 1,
 "preserve_newlines": true,
 "wrap_attributes": "force-expand-multiline"
 },
 // 高亮所忽略的組件數(shù)組
 "wxmlConfig.tagNoActiveArr": [
 "view",
 "button",
 "text",
 "icon",
 "image",
 "navigator",
 "block",
 "input",
 "template",
 "form",
 "camera",
 "textarea"
 ],
 "zenMode.restore": true,
 "breadcrumbs.enabled": true,
 "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
 "[wxml]": {
 "editor.defaultFormatter": "qiu8310.minapp-vscode"
 },
 "gitlens.advanced.messages": {
 "suppressLineUncommittedWarning": true
 },
 "javascript.format.placeOpenBraceOnNewLineForControlBlocks": true,
 "editor.formatOnPaste": false,
 "vsicons.presets.hideFolders": true,
 "editor.cursorStyle": "line-thin"
}

第二版本

{
 // 換行
 "editor.wordWrap": "on",
 // 是否允許自定義的snippet片段提示
 "editor.snippetSuggestions": "top",
 // vscode默認啟用了根據(jù)文件類型自動設(shè)置tabsize的選項 不檢查縮進,保存后統(tǒng)一按設(shè)置項來設(shè)置
 "editor.detectIndentation": false,
 // 重新設(shè)定tabsize 代碼縮進修改成4個空格
 "editor.tabSize": 2,
 // #每次保存的時候自動格式化
 "editor.formatOnSave": false,
 // #每次保存的時候?qū)⒋a按eslint格式進行修復(fù) 使用eslint 風(fēng)格使用standard 進行代碼規(guī)則限制
 "editor.fontWeight": "200",
 "editor.formatOnType": false,
 "workbench.iconTheme": "material-icon-theme",
 "git.confirmSync": false,
 "team.showWelcomeMessage": false,
 "window.zoomLevel": 0,
 "editor.renderWhitespace": "boundary",
 "editor.cursorBlinking": "smooth",
 "editor.minimap.enabled": true,
 "editor.minimap.renderCharacters": false,
 "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
 "editor.codeLens": true,
 //eslint 代碼自動檢查相關(guān)配置
 "eslint.enable": true,
 "eslint.run": "onType",
 "eslint.options": {
 "configFile": "D:/.eslintrc.js",
 "plugins": ["html"],
 "extensions": [
  ".js",
  ".vue"
 ]
 },
 "eslint.validate": [
 "javascript",
 "javascriptreact",
 "html",
 "vue"
],
 // #讓prettier使用eslint的代碼格式進行校驗
 "prettier.eslintIntegration": true,
 // #去掉代碼結(jié)尾的分號
 "prettier.semi": true,
 // #使用帶引號替代雙引號
 "prettier.singleQuote": true,
 // #讓函數(shù)(名)和后面的括號之間加個空格
 "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
 // #這個按用戶自身習(xí)慣選擇 html格式化
 "vetur.format.defaultFormatter.html": "js-beautify-html",
 // #讓vue中的js按編輯器自帶的ts格式進行格式化
 "vetur.format.defaultFormatter.js": "vscode-typescript",
 "explorer.confirmDelete": false,
 "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, // 兩個選擇器中是否換行
 "files.associations": {
 "*.cjson": "jsonc",
 "*.wxss": "css",
 "*.wxs": "javascript"
 },
 "emmet.includeLanguages": {
 "wxml": "html"
 },
 "minapp-vscode.disableAutoConfig": true,
 "window.menuBarVisibility": "visible",
 "git.enableSmartCommit": true,
 "git.autofetch": true,
 "liveServer.settings.donotShowInfoMsg": true,
 "[html]": {
 "editor.defaultFormatter": "vscode.html-language-features"
 },
 "javascript.updateImportsOnFileMove.enabled": "always",
 "workbench.colorTheme": "Default Dark+",
 // 字體大小
 "editor.fontSize": 15,
 // 設(shè)置行高
 "editor.lineHeight": 20,
 "search.followSymlinks": false,
 "workbench.sideBar.location": "right",
 "vscode_custom_css.policy": true,
 "vscode_custom_css.imports": [
 "file:///C:/vscode-transparent-glow/synthwave84.css",
 "file:///C:/vscode-transparent-glow/toolbar.css",
 "file:///C:/vscode-transparent-glow/vscode-vibrancy-style.css",
 "file:///C:/vscode-transparent-glow/enable-electron-vibrancy.js"
 ],
 // 高亮的顏色,emm暫時只支持這樣寫
 "wxmlConfig.activeColor": {
 "color": "#e5c07b"
 },
 // 是否禁用高亮組件
 "wxmlConfig.activeDisable": false,
 // 是否開啟保存自動格式化
 "wxmlConfig.onSaveFormat": false,
 "wxmlConfig.format": {
 "brace_style": "collapse",
 "end_with_newline": false,
 "indent_char": "",
 "indent_handlebars": false,
 "indent_inner_html": false,
 "indent_scripts": "keep",
 "indent_size": 2,
 "indent_with_tabs": false,
 "max_preserve_newlines": 1,
 "preserve_newlines": false,
 "wrap_attributes": "force-expand-multiline"
 },
 // 高亮所忽略的組件數(shù)組
 "wxmlConfig.tagNoActiveArr": [
 "view",
 "button",
 "text",
 "icon",
 "image",
 "navigator",
 "block",
 "input",
 "template",
 "form",
 "camera",
 "textarea"
 ],
 "zenMode.restore": true,
 "breadcrumbs.enabled": true,
 "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
 "[wxml]": {
 "editor.defaultFormatter": "qiu8310.minapp-vscode"
 },
 "gitlens.advanced.messages": {
 "suppressLineUncommittedWarning": true
 },
 "javascript.format.placeOpenBraceOnNewLineForControlBlocks": true,
 "editor.formatOnPaste": false,
 "vsicons.presets.hideFolders": true,
 "editor.cursorStyle": "line-thin",
 "editor.suggestSelection": "first",
 "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
 "editor.codeActionsOnSave": {
 "source.fixAll.eslint": true
 },
 "terminal.integrated.rendererType": "dom",
 "vscode_vibrancy.opacity": 0.5
}

第一項 VS code編輯使用eslint的規(guī)則去格式化代碼

{
 "[javascript]": {
 "editor.defaultFormatter": "HookyQR.beautify"
 },
 "[html]": {
 "editor.defaultFormatter": "HookyQR.beautify"
 },
 "eslint.validate": [
 "javascript",
 "javascriptreact",
 "vue-html",
 {
  "language": "vue",
  "autoFix": true
 }
 ],
 "eslint.run": "onSave",
 "eslint.autoFixOnSave": true,
 "editor.codeActionsOnSave": {
 "source.fixAll.eslint": true
 },
}

VS code還可以指定ESLint的格式文件

"eslint.options": {
 "configFile": "E:/git/github/styleguide/eslint/.eslintrc.js",
 "plugins": ["html"]
},
"eslint.validate": [
 "javascript",
 "javascriptreact",
 "html",
 "vue"
]

第二項 使用 Prettier - Code formatter 根據(jù)eslint的規(guī)則去格式化代碼

"[vue]": {
  "editor.defaultFormatter": "esbenp.prettier-vscode"
 },
 "[javascript]": {
  "editor.defaultFormatter": "esbenp.prettier-vscode"
 },
 "eslint.validate": [
  "javascript",
  "javascriptreact",
  "vue-html",
  {
   "language": "vue",
   "autoFix": true
  }
 ],
 "eslint.run": "onSave",
 "eslint.autoFixOnSave": true,
 "editor.codeActionsOnSave": {
  "source.fixAll.eslint": true
 },

 "prettier.printWidth": 200,
 "prettier.requireConfig": true,
 "prettier.semi": false,
 "prettier.useEditorConfig": false,
 "prettier.useTabs": true,

{
 // 換行
 "editor.wordWrap": "on",
 // 是否允許自定義的snippet片段提示
 "editor.snippetSuggestions": "top",
 // vscode默認啟用了根據(jù)文件類型自動設(shè)置tabsize的選項 不檢查縮進,保存后統(tǒng)一按設(shè)置項來設(shè)置
 "editor.detectIndentation": false,
 // 重新設(shè)定tabsize 代碼縮進修改成4個空格
 "editor.tabSize": 2,
 // #每次保存的時候自動格式化
 "editor.formatOnSave": false,
 // #每次保存的時候?qū)⒋a按eslint格式進行修復(fù) 使用eslint 風(fēng)格使用standard 進行代碼規(guī)則限制
 "editor.fontWeight": "200",
 "editor.formatOnType": false,
 "workbench.iconTheme": "vscode-icons-mac",
 "git.confirmSync": false,
 "team.showWelcomeMessage": false,
 "window.zoomLevel": 0,
 "editor.renderWhitespace": "boundary",
 "editor.cursorBlinking": "smooth",
 "editor.minimap.enabled": true,
 "editor.minimap.renderCharacters": false,
 "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
 "editor.codeLens": true,
 //eslint 代碼自動檢查相關(guān)配置
 "eslint.enable": true,
 "eslint.run": "onType",
 "eslint.options": {
 "configFile": "D:/.eslintrc.js",
 "plugins": [
  "html"
 ],
 "extensions": [
  ".js",
  ".vue"
 ]
 },
 "eslint.validate": [
 "javascript",
 "javascriptreact",
 "html",
 "vue"
 ],
 // #讓prettier使用eslint的代碼格式進行校驗
 "prettier.eslintIntegration": true,
 // #去掉代碼結(jié)尾的分號
 "prettier.semi": true,
 // #使用帶引號替代雙引號
 "prettier.singleQuote": true,
 // #讓函數(shù)(名)和后面的括號之間加個空格
 "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
 // #這個按用戶自身習(xí)慣選擇 html格式化
 "vetur.format.defaultFormatter.html": "js-beautify-html",
 // #讓vue中的js按編輯器自帶的ts格式進行格式化
 "vetur.format.defaultFormatter.js": "vscode-typescript",
 "explorer.confirmDelete": false,
 "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, // 兩個選擇器中是否換行
 "files.associations": {
 "*.cjson": "jsonc",
 "*.wxss": "css",
 "*.wxs": "javascript"
 },
 "emmet.includeLanguages": {
 "wxml": "html"
 },
 "minapp-vscode.disableAutoConfig": true,
 "window.menuBarVisibility": "visible",
 "git.enableSmartCommit": true,
 "git.autofetch": true,
 "liveServer.settings.donotShowInfoMsg": true,
 "[html]": {
 "editor.defaultFormatter": "vscode.html-language-features"
 },
 "javascript.updateImportsOnFileMove.enabled": "always",
 "workbench.colorTheme": "SynthWave '84",
 // 字體大小
 "editor.fontSize": 15,
 // 設(shè)置行高
 "editor.lineHeight": 20,
 "search.followSymlinks": false,
 "workbench.sideBar.location": "left",
 "vscode_custom_css.policy": true,
 "vscode_custom_css.imports": [
 "file:///C:/vscode-transparent/synthwave84.css",
 "file:///C:/vscode-transparent/toolbar.css",
 "file:///C:/vscode-transparent/vscode-vibrancy-style.css",
 "file:///C:/vscode-transparent/enable-electron-vibrancy.js"
 ],
 // 高亮的顏色,emm暫時只支持這樣寫
 "wxmlConfig.activeColor": {
 "color": "#e5c07b"
 },
 // 是否禁用高亮組件
 "wxmlConfig.activeDisable": false,
 // 是否開啟保存自動格式化
 "wxmlConfig.onSaveFormat": false,
 "wxmlConfig.format": {
 "brace_style": "collapse",
 "end_with_newline": false,
 "indent_char": "",
 "indent_handlebars": false,
 "indent_inner_html": false,
 "indent_scripts": "keep",
 "indent_size": 2,
 "indent_with_tabs": false,
 "max_preserve_newlines": 1,
 "preserve_newlines": false,
 "wrap_attributes": "force-expand-multiline"
 },
 // 高亮所忽略的組件數(shù)組
 "wxmlConfig.tagNoActiveArr": [
 "view",
 "button",
 "text",
 "icon",
 "image",
 "navigator",
 "block",
 "input",
 "template",
 "form",
 "camera",
 "textarea"
 ],
 "zenMode.restore": true,
 "breadcrumbs.enabled": true,
 "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
 "[wxml]": {
 "editor.defaultFormatter": "qiu8310.minapp-vscode"
 },
 "gitlens.advanced.messages": {
 "suppressLineUncommittedWarning": true
 },
 "javascript.format.placeOpenBraceOnNewLineForControlBlocks": true,
 "editor.formatOnPaste": false,
 "vsicons.presets.hideFolders": true,
 "editor.cursorStyle": "line-thin",
 "editor.suggestSelection": "first",
 "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
 "editor.codeActionsOnSave": {
 "source.fixAll.eslint": true
 },
 "terminal.integrated.rendererType": "dom",
 "vscode_vibrancy.opacity": 1,
 "npm.fetchOnlinePackageInfo": false
}

到此這篇關(guān)于自己的vscode-settings.json配置的文章就介紹到這了,更多相關(guān)vscode-settings.json配置內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • 解析VScode在Windows環(huán)境下c_cpp_properties.json文件配置問題(推薦)
  • 詳解如何在vscode里面調(diào)試js和node.js的方法步驟
  • 利用vscode調(diào)試編譯后的js代碼詳解
  • VSCode中如何利用d.ts文件進行js智能提示
  • VsCode新建VueJs項目的詳細步驟
  • 利用types增強vscode中js代碼提示功能詳解
  • 基于VSCode調(diào)試網(wǎng)頁JavaScript代碼過程詳解

標簽:許昌 咸寧 萊蕪 棗莊 忻州 三沙 七臺河 汕尾

巨人網(wǎng)絡(luò)通訊聲明:本文標題《自己的vscode-settings.json配置詳解》,本文關(guān)鍵詞  自己的,vscode-settings.json,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《自己的vscode-settings.json配置詳解》相關(guān)的同類信息!
  • 本頁收集關(guān)于自己的vscode-settings.json配置詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av
    亚洲美女视频在线观看| 国产亚洲欧美色| 国产欧美一区二区精品性色超碰| 亚洲高清三级视频| 国产精品久久毛片a| 国产日韩欧美a| 一区二区三区在线视频免费观看| 亚洲一二三四区不卡| 国产一区二区h| 国产成人a级片| 91精品在线一区二区| 宅男噜噜噜66一区二区66| 亚洲日本va在线观看| 国产精品自拍av| 91亚洲精品久久久蜜桃| 久久精品在线观看| 亚洲视频电影在线| 欧美亚一区二区| 精彩视频一区二区| 国产精品夜夜嗨| 欧美tickling网站挠脚心| 一区二区三区蜜桃| 色综合天天在线| 亚洲人亚洲人成电影网站色| 国产精品一二一区| 精品免费99久久| 午夜精品福利视频网站| 91黄色激情网站| 久久影音资源网| 亚洲成人在线免费| 欧美性猛交xxxxxx富婆| 一级中文字幕一区二区| 欧洲av在线精品| 亚洲bt欧美bt精品777| 欧亚一区二区三区| 亚洲福中文字幕伊人影院| 精品视频一区二区不卡| 日韩高清在线观看| 精品日产卡一卡二卡麻豆| 九九精品一区二区| 久久精品一区二区| 99视频精品在线| 亚洲小说春色综合另类电影| 色婷婷亚洲婷婷| 天使萌一区二区三区免费观看| 欧美日本一区二区三区四区| 精品一区二区综合| 国产精品视频观看| 欧美色综合网站| 肉色丝袜一区二区| 国产成人在线免费观看| 亚洲婷婷综合久久一本伊一区| 欧美日韩中文另类| 一区二区三区加勒比av| 欧美电影在线免费观看| 国产二区国产一区在线观看| 国产精品无圣光一区二区| 99re热视频精品| 中文字幕字幕中文在线中不卡视频| 欧美在线观看视频一区二区三区| 麻豆精品一二三| 久久综合久久综合久久| 色综合天天综合网天天狠天天| 亚洲成人av在线电影| 欧美一区中文字幕| 99国内精品久久| 日韩激情一二三区| 国产精品婷婷午夜在线观看| 成人一级黄色片| 五月综合激情婷婷六月色窝| 久久久久久电影| 欧美老年两性高潮| 免费人成黄页网站在线一区二区| 亚洲欧洲日韩一区二区三区| 欧美一级理论片| 韩日欧美一区二区三区| 亚洲第一电影网| 亚洲欧美韩国综合色| 欧美va在线播放| 欧美人妇做爰xxxⅹ性高电影| 国产精品自在欧美一区| 日韩成人免费在线| 国产午夜精品一区二区三区嫩草| 欧美日韩国产精选| 亚洲一区二区三区中文字幕| 国产成人av一区二区| 国产精品888| 99v久久综合狠狠综合久久| 欧美日韩综合在线| 色久优优欧美色久优优| 一本到不卡精品视频在线观看| 不卡的电影网站| 色婷婷久久久综合中文字幕| 日本久久电影网| 欧美日韩国产另类不卡| 日韩手机在线导航| 久久久久久一级片| 中文字幕一区二区三区av| 一区二区三区欧美| 奇米影视在线99精品| 丁香婷婷综合网| 91麻豆国产福利在线观看| 欧美一级欧美一级在线播放| 欧美成人官网二区| 国产精品乱码人人做人人爱| 午夜伦欧美伦电影理论片| 国产一区在线观看视频| youjizz久久| 4438x亚洲最大成人网| 久久久午夜电影| 一区二区三区欧美视频| 美女视频一区在线观看| 成人性生交大片免费看中文| 欧美色大人视频| 精品国产乱码久久久久久影片| 国产精品视频一二| 日韩av在线播放中文字幕| 丰满放荡岳乱妇91ww| 欧美美女喷水视频| 中文字幕av一区二区三区高| 天堂成人免费av电影一区| 欧美高清dvd| 成人欧美一区二区三区黑人麻豆| 视频一区视频二区中文| www.欧美色图| 欧美电视剧在线观看完整版| 夜夜揉揉日日人人青青一国产精品 | 欧美午夜片在线观看| 日韩一区二区三区av| 亚洲美女区一区| 丁香一区二区三区| 久久久亚洲精品一区二区三区| 五月天久久比比资源色| 日本久久一区二区三区| 综合久久综合久久| 国产精品一区二区无线| 精品久久久久久久久久久久包黑料| 亚洲成a天堂v人片| 在线观看成人小视频| 18欧美乱大交hd1984| www.欧美日韩国产在线| 久久久亚洲精华液精华液精华液| 麻豆久久一区二区| 欧美一级片免费看| 日韩1区2区日韩1区2区| 91精品国产aⅴ一区二区| 亚洲va国产天堂va久久en| 欧美日韩国产一级二级| 亚洲综合自拍偷拍| 欧美日韩你懂得| 天天综合天天做天天综合| 欧美人成免费网站| 日韩欧美的一区二区| 精品亚洲成av人在线观看| 日韩欧美国产高清| 精品亚洲免费视频| 国产精品丝袜在线| 成人av小说网| 一区二区三区在线高清| 91精品国产欧美一区二区18| 精品影视av免费| 国产亚洲欧美色| 一本到一区二区三区| 亚洲成人手机在线| 欧美精品一级二级三级| 中文字幕的久久| 国产亚洲欧美激情| 五月天亚洲婷婷| 久国产精品韩国三级视频| 精品1区2区在线观看| 国产成人在线免费| 中文字幕永久在线不卡| 色一区在线观看| 免费看黄色91| 国产欧美日韩精品在线| 99视频精品在线| 日韩精彩视频在线观看| 欧美sm极限捆绑bd| 成人av网站在线观看| 天堂一区二区在线| 国产亚洲欧美日韩日本| 色拍拍在线精品视频8848| 日韩不卡手机在线v区| 欧美国产日韩亚洲一区| 欧美三级中文字幕在线观看| 国产裸体歌舞团一区二区| 91女神在线视频| 欧洲av在线精品| 波多野结衣亚洲| 在线免费不卡视频| 国内精品写真在线观看| 亚洲欧美一区二区三区极速播放 | 在线不卡一区二区| 国产91高潮流白浆在线麻豆| 五月激情综合色| 亚洲视频一区二区在线| 久久久久久久国产精品影院| 日韩一级精品视频在线观看| 欧美日精品一区视频| 色综合久久久久综合99|