热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

关于规范化:前端规范elint代码格式化

前端-标准-elint代码格式化eslint配置文件{代码}常见命令主动格式化修复src文件夹下文件:eslint--fixsrc自动检测并列举不合乎的格局:eslintsrc检测指定文件夹下的.js和.vue文件:eslint--ext.js,.vuesrc依据配置文件检测指定类型文件:eslint--config.eslintrc.js--ext.js,.vuesrc设置代码跳过eslint
前端-标准-elint代码格式化

eslint配置文件

// .eslintignore文件

// 不检测iconfont.js文件
**/iconfont.js

root = true
 
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

常见命令

  • 主动格式化修复src文件夹下文件:eslint --fix src
  • 自动检测并列举不合乎的格局:eslint src
  • 检测指定文件夹下的.js和.vue文件:eslint --ext .js,.vue src
  • 依据配置文件检测指定类型文件:eslint --config .eslintrc.js --ext .js,.vue src

设置代码跳过eslint检测

  • 不检测当行:// eslint-disable-line
  • 不检测下一行:// eslint-disable-next-line
  • 整个文件不检测:头部放/* eslint-disable */
  • 跳过多行:

    /* eslint-disable */
    function a() {
        return this;
    }
    /* eslint-enable */

推荐阅读
author-avatar
小小可爱天使
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有