首页 > 其他分享 >vue2 setting配置

vue2 setting配置

时间:2024-10-09 09:45:23浏览次数:1  
标签:vue2 配置 cd setting editor && fileNameWithoutExt true dir

{     "workbench.iconTheme": "vscode-icons",     "vsicons.dontShowNewVersionMessage": true,     "terminal.integrated.profiles.windows": {         "cmd": {             "path": "C:\\Windows\\System32\\cmd.exe",             "args": []         },         "Git Bash": {             "path": "D:\\down\\git\\Git\\bin\\bash.exe",             "args": []         }     },     "liveServer.settings.donotShowInfoMsg": true,     "editor.formatOnPaste": true,     "editor.formatOnType": true,     "editor.formatOnSave": true,     "eslint.codeAction.showDocumentation": {         "enable": true     },     "editor.codeActionsOnSave": {         "eslint.autoFixOnSave": "explicit",         "source.fixAll": "explicit",         "source.fixAll.eslint": "explicit"     },     "eslint.validate": [         "javascript",         "javascriptreact",         "vue",         "html",         "vue3",         "less",         "scss",         "json"     ],     "editor.defaultFormatter": "dbaeumer.vscode-eslint",     "eslint.quiet": true,     "eslint.workingDirectories": [         ".eslintrc.js",         {             "mode": "auto"         }     ],     "eslint.options": {         "configFile": "D:/xdfProject/sail_new_question_bank/.eslintrc.js",         "extensions": [             "js",             "vue",             ".jsx",             ".tsx"         ]     },     "eslint.format.enable": true,     "eslint.enable": true,     "eslint.run": "onType",     "eslint.lintTask.enable": true,     "[javascript]": {         "editor.defaultFormatter": "dbaeumer.vscode-eslint"     },     "[html]": {         "editor.defaultFormatter": "vscode.html-language-features"     },     "[vue]": {         "editor.defaultFormatter": "dbaeumer.vscode-eslint"     },     "[json]": {         "editor.defaultFormatter": "vscode.json-language-features"     },     "less.compile": {         "compress": false,         "sourceMap": false,         "out": false     },     "[less]": {         "editor.defaultFormatter": "vscode.css-language-features"     },     "[scss]": {         "editor.defaultFormatter": "vscode.css-language-features"     },     "[typescript]": {         "editor.defaultFormatter": "vscode.typescript-language-features"     },     "background.enabled": true,     "background.customImages": [         "file:///D:/down/images/3.png"     ],     "background.style": {         "content": "''",         "pointer-events": "none",         "position": "absolute",         "z-index": "0",         "width": "100%",         "height": "100%",         "background-position": "center",         "background-repeat": "no-repeat",         "background-size": "100%,100%",         "opacity": 0.5     },     "editor.suggestSelection": "first",     "files.autoSave": "off",     "editor.suggest.shareSuggestSelections": false,     "files.associations": {         "*.json": "json",         "*.wxss": "css",         "*.wxs": "javascript",         "*.extension": "html",         ".editorconfig": "javascript"     },     "emmet.includeLanguages": {         "wxml": "html"     },     "mssql.connections": [],     "git.autofetch": true,     "editor.detectIndentation": false,     "vetur.ignoreProjectWarning": true,     "vetur.format.defaultFormatter.js": "vscode-typescript",     "vetur.format.defaultFormatterOptions": {         "js-beautify-html": {             "wrap_line_length": "auto",             "wrap_attributes": "auto",             "styleInitialIndent": true,             "scriptInitialIndent": true,             "styleLanguage": "css",             "options": {                 "css": [                     {                         "name": "uppercase",                         "description": "Uppercase all styles",                         "runOnSave": false,                         "enabled": false                     }                 ]             }         }     },     "editor.tabSize": 2,     "vetur.validation.template": false,     "vetur.format.defaultFormatter.html": "js-beautify-html",     "security.workspace.trust.untrustedFiles": "open",     "terminal.integrated.defaultProfile.windows": "cmd",     "open-in-browser.default": "Google Chrome",     "git.openRepositoryInParentFolders": "never",     "gitlens.advanced.messages": {         "suppressLineUncommittedWarning": true     },     "vite.autoStart": false,     "vite.host": "127.0.0.1",     "vite.port": 3000,     "i18n-ally.displayLanguage": "zh-cn",     "applets.format.defaultFormatter.ts": "prettier-tslint",     "code-runner.executorMap": {         "csharp": "cd $dir && dotnet run",         "javascript": "node",         "java": "cd $dir && javac $fileName && java $fileNameWithoutExt",         "c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",         "zig": "zig run",         "cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",         "objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",         "php": "php",         "python": "python -u",         "perl": "perl",         "perl6": "perl6",         "ruby": "ruby",         "go": "go run",         "lua": "lua",         "groovy": "groovy",         "powershell": "powershell -ExecutionPolicy ByPass -File",         "bat": "cmd /c",         "shellscript": "bash",         "fsharp": "fsi",         "vbscript": "cscript //Nologo",         "typescript": "ts-node",         "coffeescript": "coffee",         "scala": "scala",         "swift": "swift",         "julia": "julia",         "crystal": "crystal",         "ocaml": "ocaml",         "r": "Rscript",         "applescript": "osascript",         "clojure": "lein exec",         "haxe": "haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt",         "rust": "cd $dir && rustc $fileName && $dir$fileNameWithoutExt",         "racket": "racket",         "scheme": "csi -script",         "ahk": "autohotkey",         "autoit": "autoit3",         "dart": "dart",         "pascal": "cd $dir && fpc $fileName && $dir$fileNameWithoutExt",         "d": "cd $dir && dmd $fileName && $dir$fileNameWithoutExt",         "haskell": "runghc",         "nim": "nim compile --verbosity:0 --hints:off --run",         "lisp": "sbcl --script",         "kit": "kitc --run",         "v": "v run",         "sass": "sass --style expanded",         "scss": "scss --style expanded",         "less": "cd $dir && lessc $fileName $fileNameWithoutExt.css",         "FortranFreeForm": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",         "fortran-modern": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",         "fortran_fixed-form": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",         "fortran": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",         "sml": "cd $dir && sml $fileName",         "mojo": "mojo run",         "erlang": "escript",         "spwn": "spwn build",         "pkl": "cd $dir && pkl eval -f yaml $fileName -o $fileNameWithoutExt.yaml",         "gleam": "gleam run -m $fileNameWithoutExt"     } }

标签:vue2,配置,cd,setting,editor,&&,fileNameWithoutExt,true,dir
From: https://www.cnblogs.com/ht955/p/18453592

相关文章

  • 大数据-158 Apache Kylin 安装配置详解 集群模式启动
    点一下关注吧!!!非常感谢!!持续更新!!!目前已经更新到了:Hadoop(已更完)HDFS(已更完)MapReduce(已更完)Hive(已更完)Flume(已更完)Sqoop(已更完)Zookeeper(已更完)HBase(已更完)Redis(已更完)Kafka(已更完)Spark(已更完)Flink(已更完)ClickHouse(已更完)Kudu(已更完)Druid(已更完)Kylin(正在更新…)章节内容上节......
  • 织梦数据库配置文件修改数据库配置方法
    打开配置文件:使用专业的代码编辑器(如Dreamweaver、Notepad++等)打开 /data/common.inc.php 文件。修改数据库配置:根据实际情况修改以下变量:<?php//数据库连接信息$cfg_dbhost='localhost';//数据库地址$cfg_dbname='data';//数据库名$cfg_dbuse......
  • 深度学习环境配置
    安装显卡驱动安装显卡驱动:sudoaptinstallubuntu-drivers-common#安装ubuntu-drivers工具ubuntu-driversdevices#查看可用的NVIDIA驱动程序版本sudoubuntu-driversautoinstall#自动安装推荐的驱动版本sudoaptinstallnvidia-dri......
  • Auto-Animate:是一款零配置、即插即用的动画工具,可以为您的 Web 应用添加流畅的过渡效
    嗨,大家好,我是小华同学,关注我们获得“最新、最全、最优质”开源项目和高效工作学习方法用户体验成为了检验产品成功与否的关键因素。而动画效果,作为提升用户体验的重要手段,在网页和应用开发中扮演着举足轻重的角色。今天,就让我们一起来探索一款名为Auto-Animate的动画工具,它......
  • Revit Server的注意要配置说明
    可以执行多项检查来验证RevitServer是否正常运行或确定问题的原因:确认IIS管理器中显示以下服务(“开始”—>“运行intemgr”):   AdminService####(这构成列出的三个RevitServerAdministrator服务之一)。   LocalService####(这负责Accelerator功能)。   ModelSe......
  • 练习题 - Scrapy爬虫框架 Settings 项目配置
    在使用Scrapy构建网络爬虫时,Settings框架配置是至关重要的部分。Settings是Scrapy框架的配置核心,它决定了爬虫的行为、请求的频率、用户代理的使用、数据存储等一系列关键功能。掌握Scrapy的配置设置,能够让你的爬虫更加高效、稳定和智能。通过合理配置,可以更好地模......
  • 华为路由器配置IPV4和IPV6局域网示例
    设计架构图及IP地址如下:PC1和PC2通过DHCP和DHCPV6获取IPV4和IPV6地址,实现图内的所有设备IPV4和IPV6全部互通。1、IPV4配置:R2配置:<Huawei>system-viewEntersystemview,returnuserviewwithCtrl+Z.[Huawei]sysnameR2[R2]interfaceGigabitEthernet0/0/0......
  • docker加速镜像配置及使用阿里云镜像安装docker
    1、阿里云个人镜像加速器sudomkdir-p/etc/dockersudotee/etc/docker/daemon.json<<-'EOF'{"registry-mirrors":["https://snltq7d6.mirror.aliyuncs.com"]}EOFsudosystemctldaemon-reloadsudosystemctlrestartdocker2、阿里云镜像......
  • python解释器配置
    python解释器配置Python解释器是一种程序,用于读取和执行Python代码。Python是一种高级编程语言,广泛应用于各种领域,包括web开发、数据科学、人工智能、自动化、科学计算等。Python解释器的核心作用是将Python代码转换成计算机可以理解和执行的形式。以下是Python......
  • 海外模组联网非常难?不往忘了APN配置…
    ​ 除了中国之外,国外的4G信号都比较差劲。做海外的设备,如果忽视了射频的信号质量,肯定是要吃大亏的!所以,海外模组的联网问题,会比国内要多不少。客户在实际应用中或多或少都会遇到:网络相关问题:例如:连不上网,APN不会配置,APN没有配置,当地信号差…软件升级问题:例如:增加需求,修改bu......