-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathindex.js
More file actions
17 lines (16 loc) · 638 Bytes
/
index.js
File metadata and controls
17 lines (16 loc) · 638 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*! eslint-plugin-standard. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
'use strict'
module.exports = {
rules: {
'array-bracket-even-spacing': require('./rules/array-bracket-even-spacing.js'),
'computed-property-even-spacing': require('./rules/computed-property-even-spacing.js'),
'object-curly-even-spacing': require('./rules/object-curly-even-spacing.js'),
'no-callback-literal': require('./rules/no-callback-literal.js')
},
rulesConfig: {
'object-curly-even-spacing': 0,
'array-bracket-even-spacing': 0,
'computed-property-even-spacing': 0,
'no-callback-literal': 0
}
}