zoukankan      html  css  js  c++  java
  • eslintrc.js

    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,
    		'semi': ['error', 'always'],
    		'indent': 0,
    		'space-before-function-paren': 0
    	}
    }
    
    
    You can change the world with your heart,even a lot of changes sometimes unless you won't geiv up....
  • 相关阅读:
    mini linux制作
    samba
    文件链接
    bz1234513
    shell中if判断语句
    文件系统层次结构
    ssh免密码登陆
    shell基础
    参考__Web前端大全
    参考__综合类网站大全
  • 原文地址:https://www.cnblogs.com/xiongwei2017/p/6654348.html
Copyright © 2011-2022 走看看