aswi2020vldc-gitlab/templetes/node_modules/hash.js/.eslintrc.js @ 4605a44b
1 |
module.exports = { |
---|---|
2 |
'env': { |
3 |
'browser': true, |
4 |
'commonjs': true, |
5 |
'node': true, |
6 |
'es6': true |
7 |
},
|
8 |
'parserOptions': { |
9 |
'ecmaVersion': 8 |
10 |
},
|
11 |
'extends': 'eslint:recommended', |
12 |
'rules': { |
13 |
'indent': [ |
14 |
'error', |
15 |
2, |
16 |
{
|
17 |
'FunctionDeclaration': { |
18 |
'parameters': 'first' |
19 |
},
|
20 |
'FunctionExpression': { |
21 |
'parameters': 'first' |
22 |
},
|
23 |
'CallExpression': { |
24 |
'arguments': 'first' |
25 |
}
|
26 |
}
|
27 |
],
|
28 |
'linebreak-style': [ |
29 |
'error', |
30 |
'unix' |
31 |
],
|
32 |
'quotes': [ |
33 |
'error', |
34 |
'single' |
35 |
],
|
36 |
'semi': [ |
37 |
'error', |
38 |
'always' |
39 |
]
|
40 |
}
|
41 |
};
|