最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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

 更新時間:2020年05月09日 15:23:58   作者:兔子零84  
這篇文章主要介紹了自己的vscode-settings.json配置,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧

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)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • vscode的eslint插件不起作用問題及解決

    vscode的eslint插件不起作用問題及解決

    這篇文章主要介紹了vscode的eslint插件不起作用問題及解決方案,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教
    2023-10-10
  • 解決git配置錯誤ssh:connect to host github.com port 22:Connection refused

    解決git配置錯誤ssh:connect to host github.com 

    學(xué)習(xí)git時,可能會碰到遠程倉庫連接問題,解決方法是確保.ssh目錄正確配置,首先,確認.ssh是隱藏文件夾,可通過ctrl+h顯示,然后,創(chuàng)建無后綴的config文件,并填寫正確的git郵箱賬號,最后,通過終端驗證配置是否成功,這些步驟有助于解決git遠程連接的常見問題
    2024-10-10
  • vscode入門教程之頁面啟動與代碼調(diào)試

    vscode入門教程之頁面啟動與代碼調(diào)試

    VScode是微軟推出的一款輕量級的編輯器,采用了和VS相同的UI界面。今天小編給大家?guī)硪黄绾问褂胿scode來進行最基本的工作的小教程,希望大家能夠喜歡
    2020-01-01
  • 最新版Git2.29.2超詳細安裝流程(圖文詳解)

    最新版Git2.29.2超詳細安裝流程(圖文詳解)

    這篇文章主要介紹了最新版Git2.29.2超詳細安裝流程,本文通過圖文并茂的形式給大家介紹的非常詳細,對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2020-12-12
  • vscode使用git的配置教程

    vscode使用git的配置教程

    在vscode中使用Git可以幫助我們更方便地管理代碼,進行版本控制,下面通過本文給大家介紹vscode使用git的配置教程,感興趣的朋友一起看看吧
    2024-08-08
  • 人工智能機器學(xué)習(xí)常用算法總結(jié)及各個常用算法精確率對比

    人工智能機器學(xué)習(xí)常用算法總結(jié)及各個常用算法精確率對比

    這篇文章主要介紹了人工智能機器學(xué)習(xí)常用算法總結(jié)及各個常用算法精確率對比,需要的朋友可以參考下
    2020-03-03
  • IDEA2019.3在Plugins中搜索不到translation的解決

    IDEA2019.3在Plugins中搜索不到translation的解決

    這篇文章主要介紹了IDEA2019.3在Plugins中搜索不到translation的解決,文中通過圖文的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2020-06-06
  • 詳解VSCode打開多個項目文件夾的解決方法

    詳解VSCode打開多個項目文件夾的解決方法

    這篇文章主要介紹了詳解VSCode打開多個項目文件夾的解決方法,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2020-04-04
  • 完美解決瀏覽器輸入http被自動跳轉(zhuǎn)至https問題

    完美解決瀏覽器輸入http被自動跳轉(zhuǎn)至https問題

    很多朋友問小編瀏覽器輸入http被自動跳轉(zhuǎn)至https問題,到底該怎么解決呢,其實解決方法很簡單,主要關(guān)閉瀏覽器的HSTS功能就可以了,關(guān)于http自動跳轉(zhuǎn)至https的解決方法跟隨小編一起看看吧
    2021-05-05
  • jenkins配置163郵箱的操作方法

    jenkins配置163郵箱的操作方法

    Jenkins用Java語言編寫,可在Tomcat等流行的servlet容器中運行,也可獨立運行,這篇文章主要介紹了jenkins配置163郵箱的步驟,需要的朋友可以參考下
    2022-01-01

最新評論

黄陵县| 固始县| 清新县| 延川县| 肇东市| 苏州市| 克什克腾旗| 隆子县| 秦安县| 梅州市| 民权县| 张家口市| 宣化县| 修文县| 铜山县| 嘉黎县| 襄樊市| 罗城| 木里| 阳谷县| 奈曼旗| 老河口市| 四平市| 津南区| 枝江市| 玛曲县| 定远县| 尉犁县| 富锦市| 阳西县| 富平县| 林芝县| 广灵县| 长宁区| 连江县| 信丰县| 舟山市| 淮北市| 高尔夫| 饶阳县| 延边|