-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy path.eslintrc.js
36 lines (35 loc) · 961 Bytes
/
.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
// Selectively include rules from airbnb https://github.com/transloadit/node-sdk/issues/90
// eslint-disable-next-line import/no-extraneous-dependencies
const airbnbRulesImports = require('eslint-config-airbnb-base/rules/imports').rules
module.exports = {
extends: 'standard',
env : {
es6 : true,
jest: true,
node: true,
},
rules: {
// See https://github.com/transloadit/node-sdk/issues/93
'import/no-extraneous-dependencies': airbnbRulesImports['import/no-extraneous-dependencies'],
'no-multi-spaces' : 0,
'comma-dangle' : [
'error',
'always-multiline',
],
'key-spacing': [
'error',
{
multiLine: {
beforeColon: false,
afterColon : true,
},
align: {
beforeColon: false,
afterColon : true,
on : 'colon',
mode : 'strict',
},
},
],
},
}