Vue中使用eslint和editorconfig方式
作者:可能是鱼 时间:2024-06-05 10:03:46
使用eslint和editorconfig方式
使用eslint的好处
1、避免运行时因格式问题报错
2、方便团队合作,代码风格统一
安装eslint
命令行执行:
npm i
eslint eslint-config-standard
eslint-plugin-standard
eslint-plugin-promise
eslint-plugin-import
eslint-plugin-node
eslint-plugin-html -D
eslint-plugin-html插件识别html文件中的script标签里面的JavaScript
文件配置说明
在项目目录新建.eslintrc文件:
{
"extends": "standard",
"plugins": [
"html"
],
"rules": {
"no-new": "off"
}
}
启动命令配置
在package.json的scripts中加入:
"lint": "eslint --ext .js --ext .jsx --ext .vue client/",
"lint-fix": "eslint --fix --ext .js --ext .jsx --ext .vue client/"
client/ 为要检查的文件夹
执行:
npm run lint //语法检查
npm run lint-fix //自动修复语法检查出现的问题
自动检查语法配置
命令行执行:
npm i eslint-loader babel-eslint -D
然后在.eslintrc文件中添加"parser": "babel-eslint":
{
"extends": "standard",
"plugins": [
"html"
],
"parser": "babel-eslint",
"rules": {
"no-new": "off"
}
}
在webpack的配置文件的module.rules中加入:
{
test: /\.(vue|js|jsx)$/,
loader: 'eslint-loader',
exclude: /node_modules/,
enforce: 'pre' //预处理
},
添加editorconfig
在项目目录新建.editorconfig文件:
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
vue editorconfig编辑器配置说明
editorconfig是什么,有什么用
editorconfig是定义编码样式的配置文件,帮助多人合作项目或者不同编辑器下保持代码风格统一。
editorconfig示例
# http://editorconfig.org (Editorconfig 的官方网站)
# 控制 EditorConfig 约定的范围
root = true
# 匹配全部文件
[*]
# 设置字符集
charset = utf-8
# 缩进风格 可选"space"、"tab"
indent_style = space
# 缩进大小 可以是数字(空格数), tab(如果tab大小没设置则按编辑器默认tab大小)
indent_size = 2
# tab的宽度
tab_width = 4
# 结尾换行符,可选"lf"、"cr"、"crlf"
end_of_line = lf
# 文件最后插入一个空行
insert_final_newline = true
# 删除行尾空格
trim_trailing_whitespace = true
# 匹配.java结尾的文件
[*.java]
# 匹配.md结尾的文件
[*.md]
trim_trailing_whitespace = false
root=true 控制 EditorConfig 约定的范围 , Visual Studio 会在打开的文件的目录和每个父目录中查找名为 .editorconfig 的文件。 到达根文件路径时或找到具有 root=true 的 .editorconfig 文件时搜索结束。
检查是否生效
在项目的 js 文件中使用 tab 键进行缩进,分别修改 indent_size 属性值为 2 和 4,观察是否有变化。
如果没有任何变化,说明还没有安装 Editorconfig 插件。
Editorconfig 插件
该插件的作用是告诉开发工具,如 Webstorm 自动去读取项目根目录下的 .editorconfig 配置文件,如果没有安装这个插件,光有一个配置文件是无法生效的。
Webstorm 2017.1 版本之后都是自动安装这个插件的。
来源:https://blog.csdn.net/qq_36891380/article/details/83501683
标签:Vue,eslint,editorconfig
0
投稿
猜你喜欢
python基础教程之循环介绍
2021-04-22 04:38:21
妙用dw图层与表格进行网页布局
2009-07-14 21:57:00
Go语言学习笔记之golang操作MongoDB数据库
2024-01-27 05:06:23
MySQL中数据查询语句整理大全
2024-01-15 21:59:05
基于python元祖与字典与集合的粗浅认识
2023-11-11 07:19:48
python中模块的__all__属性详解
2022-10-16 08:59:18
解决python 读取excel时 日期变成数字并加.0的问题
2021-07-11 18:53:41
支付宝lab logo设计创意发想
2009-11-12 12:44:00
设计72变——寻求banner制作的变化
2009-11-12 12:56:00
如何利用Python实现一个论文降重工具
2021-02-04 08:11:28
js中string和number类型互转换技巧(分享)
2024-05-05 09:14:53
matlab中imadjust函数的作用及应用举例
2021-09-12 21:34:06
python爬取酷狗音乐Top500榜单
2023-01-26 03:09:17
在tensorflow中实现屏蔽输出的log信息
2023-02-27 17:41:21
js生成随机数(指定范围)的实例代码
2024-04-17 10:29:42
JS动态创建Table,Tr,Td并赋值的具体实现
2024-04-10 11:02:39
Python基于pygame实现单机版五子棋对战
2021-02-26 05:53:54
利用python操作SQLite数据库及文件操作详解
2024-01-25 20:54:39
python字典的常用方法总结
2023-07-11 01:45:17
SQL Server 2000如何设置会话上下文信息?
2010-05-18 18:33:00