编辑器eslint格式_vscode保存代码,自动按照eslint规范格式化代码设置

vscode保存代码,自动按照eslint规范格式化代码设置

编辑器代码风格一致,是前端代码规范的一部分。同一个项目,或者同一个小组,保持代码风格一致很必要。就拿vue项目来说,之前做的几个项目,很多小伙伴代码格式化用的是vue-beautify ,这个格式化工具有个明显的缺点,就是三元不等式明明可以一行显示,非得格式化成3行,import用{}引入多个变量或者函数,非得格式化成好几行,看起来很是别扭。因此,好的格式化工具和团队代码风格一致,显得格外重要。我建议我们整个小组运用同一个编辑器,同一种代码校验,同一个格式化方式。下面我来介绍一下使用vscode+eslint 自动保存,自动格式化的一种方式!

eslint 自动格式化

先说一个前提吧,你在package.json中安装了eslint的依赖,不然配置无用。

"eslint": "^6.1.0",

"eslint-friendly-formatter": "^6.4.1",

"eslint-loader": "^6.4.1",

"eslint-plugin-html": "^6.4.1",

上面说的是一个前提,下面来说一下具体的配置步骤:

首先,在我们项目跟目录添加.eslintrc.js 文件,用于校验代码,编写eslint相关规则,关于eslint的一些具体规则,请查看eslint文档

下面列一下我们项目中常用的eslint规则:

module.exports = {

root: true,

// 添加插件

"plugins": [

"vue"

],

'extends': [

'plugin:vue/essential',

'@vue/standard'

],

rules: {

// allow async-await

'generator-star-spacing': 'off',

// allow debugger during development

'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',

'vue/no-parsing-error': [2, {

'x-invalid-end-tag': false

}],

'no-undef': 'off',

'camelcase': 'off',

// 允许控制台输出

'no-console': 'off',

'accessor-pairs': 2,

'arrow-spacing': [2, { 'before': true, 'after': true }],

'block-spacing': [2, 'always'],

'brace-style': [2, '1tbs', { 'allowSingleLine': true }],

// 'camelcase': [2, { 'properties': 'always' }],

'comma-dangle': [2, 'never'],

'comma-spacing': [2, { 'before': false, 'after': true }],

'comma-style': [2, 'last'],

'constructor-super': 2,

'curly': [2, 'multi-line'],

'dot-location': [2, 'property'],

'eol-last': 2,

'eqeqeq': [2, 'allow-null'],

'generator-star-spacing': [2, { 'before': true, 'after': true }],

'handle-callback-err': [2, '^(err|error)$' ],

'indent': [2, 2, { 'SwitchCase': 1 }],

'jsx-quotes': [2, 'prefer-single'],

'key-spacing': [2, { 'beforeColon': false, 'afterColon': true }],

'keyword-spacing': [2, { 'before': true, 'after': true }],

'new-cap': [2, { 'newIsCap': true, 'capIsNew': false }],

'new-parens': 2,

'no-array-constructor': 2,

'no-caller': 2,

'no-class-assign': 2,

'no-cond-assign': 2,

'no-const-assign': 2,

'no-control-regex': 2,

'no-delete-var': 2,

'no-dupe-args': 2,

'no-dupe-class-members': 2,

'no-dupe-keys': 2,

'no-duplicate-case': 2,

'no-empty-character-class': 2,

'no-empty-pattern': 2,

'no-eval': 2,

'no-ex-assign': 2,

'no-extend-native': 2,

'no-extra-bind': 2,

'no-extra-boolean-cast': 2,

'no-extra-parens': [2, 'functions'],

'no-fallthrough': 2,

'no-floating-decimal': 2,

'no-func-assign': 2,

'no-implied-eval': 2,

'no-inner-declarations': [2, 'functions'],

'no-invalid-regexp': 2,

'no-irregular-whitespace': 2,

'no-iterator': 2,

'no-label-var': 2,

'no-labels': [2, { 'allowLoop': false, 'allowSwitch': false }],

'no-lone-blocks': 2,

'no-mixed-spaces-and-tabs': 2,

'no-multi-spaces': 2,

'no-multi-str': 2,

'no-multiple-empty-lines': [2, { 'max': 1 }],

'no-native-reassign': 2,

'no-negated-in-lhs': 2,

'no-new-object': 2,

'no-new-require': 2,

'no-new-symbol': 2,

'no-new-wrappers': 2,

'no-obj-calls': 2,

'no-octal': 2,

'no-octal-escape': 2,

'no-path-concat': 2,

'no-proto': 2,

'no-redeclare': 2,

'no-regex-spaces': 2,

'no-return-assign': [2, 'except-parens'],

'no-self-assign': 2,

'no-self-compare': 2,

'no-sequences': 2,

'no-shadow-restricted-names': 2,

'no-spaced-func': 2,

'no-sparse-arrays': 2,

'no-this-before-super': 2,

'no-throw-literal': 2,

'no-trailing-spaces': 2,

'no-undef': 2,

'no-undef-init': 2,

'no-unexpected-multiline': 2,

'no-unmodified-loop-condition': 2,

'no-unneeded-ternary': [2, { 'defaultAssignment': false }],

'no-unreachable': 2,

'no-unsafe-finally': 2,

'no-unused-vars': [2, { 'vars': 'all', 'args': 'none' }],

'no-useless-call': 2,

'no-useless-computed-key': 2,

'no-useless-constructor': 2,

'no-useless-escape': 0,

'no-whitespace-before-property': 2,

'no-with': 2,

'one-var': [2, { 'initialized': 'never' }],

'operator-linebreak': [2, 'after', { 'overrides': { '?': 'before', ':': 'before' } }],

'padded-blocks': [2, 'never'],

'quotes': [2, 'single', { 'avoidEscape': true, 'allowTemplateLiterals': true }],

'semi': [2, 'never'],

'semi-spacing': [2, { 'before': false, 'after': true }],

'space-before-blocks': [2, 'always'],

'space-before-function-paren': [2, 'always'],

'space-in-parens': [2, 'never'],

'space-infix-ops': 2,

'space-unary-ops': [2, { 'words': true, 'nonwords': false }],

'spaced-comment': [2, 'always', { 'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ','] }],

'template-curly-spacing': [2, 'never'],

'use-isnan': 2,

'valid-typeof': 2,

'wrap-iife': [2, 'any'],

'yield-star-spacing': [2, 'both'],

'yoda': [2, 'never'],

'prefer-const': 2,

'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,

'object-curly-spacing': [2, 'always', { objectsInObjects: false }],

'array-bracket-spacing': [2, 'never'],

'vue/jsx-uses-vars': 2

},

parserOptions: {

parser: 'babel-eslint'

}

}

其次,vscode中添加eslint和vetur插件:

如图所示

安装好了之后,会自动根据你上面配置的规则进行代码检查,不合格的会高亮显示,如下图:

经过上面步骤,目前保存还不能自动格式化,下面说下如何自动格式化!

自动格式化设置

1、window电脑:文件 > 首选项 > 设置 打开 VSCode 配置文件

2、mac电脑code>首选项 >设置

我的设置如下:

{

"editor.tabSize": 2,

"eslint.autoFixOnSave": true, // 每次保存的时候将代码按eslint格式进行修复

"prettier.eslintIntegration": true, //让prettier使用eslint的代码格式进行校验

"prettier.semi": false, //去掉代码结尾的分号

"prettier.singleQuote": true, //使用单引号替代双引号

"javascript.format.insertSpaceBeforeFunctionParenthesis": true, //让函数(名)和后面的括号之间加个空格

"vetur.format.defaultFormatter.html": "js-beautify-html", //格式化.vue中html

"vetur.format.defaultFormatter.js": "vscode-typescript", //让vue中的js按编辑器自带的ts格式进行格式化

"vetur.format.defaultFormatterOptions": {

"js-beautify-html": {

"wrap_attributes": "force-aligned" //属性强制折行对齐

}

},

"eslint.validate": [ //开启对.vue文件中错误的检查

"javascript",

"javascriptreact",

{

"language": "html",

"autoFix": true

},

{

"language": "vue",

"autoFix": true

}

],

"search.exclude": {

"**/node_modules": true,

"**/bower_components": true,

"**/dist": true

},

"window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",

}

关闭eslint检查

1、vue create的项目在vue.config.js中lintOnSave: false

2、以前的项目,vue init webpack的config/index.js 文件。 将useEslint: true 设置为useEslint: false

其他推荐

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/471830.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

linux测试网络带宽极限,iperf 测试极限带宽

iperf 版本建议采用linux,事实上,windows版也很好用。带宽测试通常采用UDP模式,因为能测出极限带宽、时延抖动、丢包率。在进行测试时,首先以链路理论带宽作为数据发送速率进行测试,例如,从客户端到服务器之…

LeetCode MySQL 1571. 仓库经理

1. 题目 表: Warehouse ----------------------- | Column Name | Type | ----------------------- | name | varchar | | product_id | int | | units | int | -----------------------(name, product_id) 是该表主键. 该表的行包含了每个仓库…

将方法作为方法的参数 —— 理解委托

《.NET开发之美》上对于委托写到:“它们就像是一道槛儿,过了这个槛的人,觉得真是太容易了,而没有过去的人每次见到委托和事件就觉得心里别得慌,混身不自在。”我觉得这句话就像是在说我自己一样。于是我决定好好看看关…

c# 定位内存快速增长_改善C#程序,提高程序运行效率的50种方法

转自:http://blog.sina.com.cn/s/blog_6f7a7fb501017p8a.html一、用属性代替可访问的字段1、.NET数据绑定只支持数据绑定,使用属性可以获得数据绑定的好处;2、在属性的get和set访问器重可使用lock添加多线程的支持。二、readonly(运行时常量)…

LeetCode MySQL 1581. 进店却未进行过交易的顾客

1. 题目 表:Visits ---------------------- | Column Name | Type | ---------------------- | visit_id | int | | customer_id | int | ----------------------visit_id 是该表的主键。 该表包含有关光临过购物中心的顾客的信息。 表&#xff1a…

linux中top工具,Linux命令工具 top详解

Linux命令工具 top详解top命令是Linux下常用的性能分析工具,能够实时显示系统中各个进程的资源占用状况,类似于Windows的任务管理器。top是一个动态显示过程,即可以通过用户按键来不断刷新当前状态.如果在前台执行该命令,它将独占前台,直到用户终止该程序…

oracle rds 运维服务_RDS oracle数据库运维方案

{"moduleinfo":{"card_count":[{"count_phone":1,"count":1}],"search_count":[{"count_phone":4,"count":4}]},"card":[{"des":"阿里云数据库专家保驾护航,为用户…

unix架构

UNIX Kernel(UNIX内核):指挥机器的运行,控制计算机的资源 UNIX Shell(UNIX外壳):是UNIX内核和用户的接口,是UNXI的命令解释器。目前常用的Shell有3种Bourne Shell(B Shell): 命令sh。最老。Korn…

randn函数加噪声_语义分割中常用的损失函数1(基础篇)

一、L1、L2 loss (分割中不常用,主要用于回归问题)L1 LossL1 Loss 主要用来计算 input x 和 target y 的逐元素间差值的平均绝对值.pytorch表示为:torch.nn.functional.l1_loss(input, target, size_averageTrue)size_average主要是考虑到minibatch的情况…

LeetCode MySQL 1607. 没有卖出的卖家

文章目录1. 题目2. 解题1. 题目 表: Customer ------------------------ | Column Name | Type | ------------------------ | customer_id | int | | customer_name | varchar | ------------------------customer_id 是该表主键. 该表的每行包含网上商城的每一位…

linux串口数据异常,linux串口知识深入--收到数据异常问题处理

对于串口并不陌生,使用了N遍,总以为理解很深刻,实际上还有很多细节未知。近期在处理新的板子发现串口收发很不正常,经常少一些数据、莫名其妙数据被串改了,导致校验通不过,现象很诡异例如存在以下几种现象&…

iOS经典面试题

前言 写这篇文章的目的是因为前两天同学想应聘iOS开发,从网上找了iOS面试题和答案让我帮忙看看。我扫了一眼,倒吸了一口冷气,仔细一看,气的发抖。整篇题目30多个没有一个答案是对的,总结这篇面试题的作者对iOS机制根本…

linux常用命令 打开文件,【Linux】常用命令 lsof查看打开的文件

Linux系统把软硬件都抽象成文件,所以通过文件可以追踪到很多重要信息,如读取的配置文件、打开的端口等。下面是常见的用法:默认测试文件名为text.txt1,显示打开text.txt的进程:lsof text.txt2,显示占用某个…

testflight怎么做版本更新_如何使用TestFlight进行App构建版本测试

在日常的开发当中,当一个项目在开发过程中或者完成准备上线,都需要我们进行真机测试,否则不可能开发完了就直接扔到了App,等上线了再下载看看,这都是不可能的。那么说到真机测试,大家肯定会想到弄一个99美刀…

LeetCode MySQL 1623. 三人国家代表队

文章目录1. 题目2. 解题1. 题目 表: SchoolA ------------------------ | Column Name | Type | ------------------------ | student_id | int | | student_name | varchar | ------------------------student_id 是表的主键 表中的每一行包含了学校A中每一个学…

LeetCode MySQL 1633. 各赛事的用户注册率

文章目录1. 题目2. 解题1. 题目 用户表: Users ---------------------- | Column Name | Type | ---------------------- | user_id | int | | user_name | varchar | ----------------------user_id 是该表的主键。 该表中的每行包括用户 ID 和用户…

linux如何批量导出文件格式,Linux下批量将md文件转换为html文件

要将markdown文件转换成html文件,可以用discount或python-markdown软件包提供的markdown工具。$ sudo apt-get install discount或$ sudo apt-get install python-markdown用discount提供的markdown工具转换:$ markdown -o Release-Notes.html Release-N…

python最好用的助手_推荐5款好用的Python工具

这篇文章的内容是给大家推荐了5款好用的Python工具,有需要的朋友可以看一看摘要:推荐5个酷毙的Python工具工欲善其事必先利其器,一个好的工具能让起到事半功倍的效果,Python社区提供了足够多的优秀工具来帮助开发者更方便的实现某…

tar linux 举例,linux 的tar 命令详解举例

编写shell脚本的时候经常需要解压缩到指定的文件夹,tar命令是最常用的参考一下说明,其中注意-C的用法。tar命令解压文件到指定目录:tar -zxvf /home/zjx/aa.tar.gz -C /home/zjx/pftar [-cxtzjvfpPN] 文件与目录....参数:-c &…

worth,worthy,worthwhile的区别(一)

worth,worthy,worthwhile的区别(一) 1:worth,作形容词,意思是,值多少钱,相当于...的价值,后面常接表示钱数的名词或相当于"代价"的比喻性名词,比如a:The watch is worth five hundred yuan at most。这块表最…