-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
38 lines (38 loc) · 1.63 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
module.exports = {
root: true, // eslint找到这个标识后,不会再去父文件夹中找eslint的配置文件
parser: 'babel-eslint', //使用babel-eslint来作为eslint的解析器
parserOptions: { // 设置解析器选项
sourceType: 'module' // 表明自己的代码是ECMAScript模块
},
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
extends: 'standard', // 继承eslint-config-standard里面提供的lint规则
// required to lint *.vue files
plugins: [ // 使用的插件eslint-plugin-html. 写配置文件的时候,可以省略eslint-plugin-
'html',
// "only-warn"
],
// 启用额外的规则或者覆盖基础配置中的规则的默认选项
rules: {
// allow paren-less arrow functions
'arrow-parens': 0,
// allow async-await
'generator-star-spacing': 0,
// http://eslint.org/docs/rules/comma-dangle
'comma-dangle': ['warn', 'only-multiline'],
'semi': 0,
'camelcase': 0,
'prefer-promise-reject-errors': 0,
'no-undef': 0
},
globals: { // 声明在代码中自定义的全局变量
'CONFIG': true
},
env: { // 定义预定义的全局变量,比如browser: true,这样你在代码中可以放心使用宿主环境给你提供的全局变量。
browser: true, // browser global variables.
node: true, // Node.js global variables and Node.js scoping.
worker: true, // web workers global variables.
mocha: true, // adds all of the Mocha testing global variables.
phantomjs: true, // PhantomJS global variables.
serviceworker: true // Service Worker global variables.
}
}