2024-01-16 21:26:16 +08:00
|
|
|
/*! eslint-plugin-standard. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
2023-12-18 13:12:25 +08:00
|
|
|
'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
|
|
|
|
}
|
|
|
|
}
|