博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vscode & ignore .idea
阅读量:5340 次
发布时间:2019-06-15

本文共 1356 字,大约阅读时间需要 4 分钟。

vscode & ignore .idea

settings.json

.vscode & ignore .idea

// 将设置放入此文件中以覆盖默认设置{    "files.exclude": {        "**/.git": true,        "**/.DS_Store": true,        "jspm_packages": true,        "node_modules": true,        "**/**/node_modules": true,        "**/.zip": true,        "**/.sh": true,        "**/.idea": true    },    "search.exclude": {        "**/node_modules": true,        "**/bower_components": true,        "**/.idea": true    },    "files.watcherExclude": {        "**/.git/objects/**": true,        "**/.git/subtree-cache/**": true,        "**/node_modules/*/**": true    },    "editor.formatOnSave": false,    "editor.renderWhitespace": "all",    "editor.fontSize": 16,    "editor.tabSize": 4,    "editor.multiCursorModifier": "alt",    "editor.wordWrap": "on",    "editor.insertSpaces": true,    "files.encoding": "utf8",    "terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",    "[typescript]": {        "editor.formatOnSave": true,        "editor.formatOnPaste": true    },    "[markdown]": {        "editor.formatOnSave": true,        "editor.renderWhitespace": "all",        "editor.acceptSuggestionOnEnter": "off"    },    "files.associations": {        "*.jsx": "javascriptreact",        "*.js": "javascriptreact"    },    "editor.snippetSuggestions": "top"}

转载于:https://www.cnblogs.com/xgqfrms/p/10843894.html

你可能感兴趣的文章
Largest Divisible Subset
查看>>
win8改win7笔记
查看>>
MYSQL 数据导入导出LOAD DATA AND OUTFILE
查看>>
mysql中两表更新时产生的奇葩问题,产生死锁!
查看>>
Python正则表达式
查看>>
celery使用
查看>>
如何在win2003下安装sql2008[多次安装sql2008失败者必看]
查看>>
[C++]C++学习笔记(四)
查看>>
Vue 不睡觉教程1-从最土开始
查看>>
IT技术栈、JAVA技术栈、游戏开发技术栈
查看>>
使用oracle的存储过程的例子
查看>>
在Idea中连接数据库并生成实体类
查看>>
PCA样本数量少于矩阵维数
查看>>
python-函数
查看>>
C/C++中输入多组数据方法
查看>>
nopCommerce的配置以及汉化
查看>>
linux中创建图片服务器减轻传统服务器的压力
查看>>
dict()函数
查看>>
js数组排序实用方法集锦
查看>>
H5 拍照图片旋转、压缩和上传
查看>>