generated from MShineRay/template-jslib-rollup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
46 lines (45 loc) · 1.14 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
39
40
41
42
43
44
45
46
// ? How would you like to use ESLint? To check syntax, find problems, and enforce code style
// ? What type of modules does your project use? JavaScript modules (import/export)
// ? Which framework does your project use? None of these
// ? Does your project use TypeScript? No
// ? Where does your code run? Browser, Node
// ? How would you like to define a style for your project? Answer questions about your style
// ? What format do you want your config file to be in? JavaScript
// ? What style of indentation do you use? Spaces
// ? What quotes do you use for strings? Single
// ? What line endings do you use? Unix
// ? Do you require semicolons? No
module.exports = {
'env': {
'browser': true,
'es6': true,
'node': true
},
'extends': 'eslint:recommended',
'globals': {
'Atomics': 'readonly',
'SharedArrayBuffer': 'readonly'
},
'parserOptions': {
'ecmaVersion': 2018,
'sourceType': 'module'
},
'rules': {
'indent': [
'error',
2
],
'linebreak-style': [
'error',
'unix'
],
'quotes': [
'error',
'single'
],
'semi': [
'error',
'never'
]
}
}