首页 > 代码库 > eslint 人性化配置
eslint 人性化配置
错误列表:
http://www.zystudios.cn/blog/post/70.Shtml
人性化一点。别老虐我啊晓梦大师
module.exports = { root: true, parser: ‘babel-eslint‘, parserOptions: { sourceType: ‘module‘ }, // https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style extends: ‘standard‘, // required to lint *.vue files plugins: [ ‘html‘ ], // add your custom rules here ‘rules‘: { // allow paren-less arrow functions ‘arrow-parens‘: 0, // allow async-await ‘generator-star-spacing‘: 0, // allow debugger during development ‘no-debugger‘: process.env.NODE_ENV === ‘production‘ ? 2 : 0, // 李钊鸿:允许tab缩进 "no-tabs":"off", // 关闭tab或space造成的indent缩进错误 ‘indent‘: 0 } }
eslint 人性化配置
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。