1 Star 5 Fork 1

littleboyck/front

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
only_eslint_setting.json 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
littleboyck 提交于 2022-02-10 09:54 . c
/**
* 第一步:全局下载eslint插件
* 第二步:将如下配置,配置到setting.json文件中
*/
{
"workbench.iconTheme": "material-icon-theme",
"git.confirmSync": false,
"git.enableSmartCommit": true,
"terminal.integrated.defaultProfile.windows": "Command Prompt",
"explorer.compactFolders": false,
"editor.unicodeHighlight.ambiguousCharacters": false,
"diffEditor.ignoreTrimWhitespace": false,
"workbench.colorTheme": "Atom One Dark",
"editor.formatOnSave": true,
// 重新设定tabsize--start
"editor.detectIndentation": false,
"editor.tabSize": 4,
//eslint 自动修复
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
// eslint校验的文件类型
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
"vue",
"css"
],
"eslint.format.enable": true,
"eslint.alwaysShowStatus": true,
"eslint.workingDirectories": [
".eslintrc.js",
{
"mode": "auto"
}
],
// 自动保存
"files.autoSave": "onFocusChange",
"files.associations": {
"*.cjson": "jsonc",
"*.wxss": "css",
"*.wxs": "javascript",
"*.vue": "vue"
},
//以下会自动配置
"emmet.includeLanguages": {
"wxml": "html"
},
"javascript.validate.enable": false,
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/littleboyck/front.git
git@gitee.com:littleboyck/front.git
littleboyck
front
front
master

搜索帮助