eslint.config.js 244 B

123456789101112
  1. const neostandard = require('neostandard')
  2. module.exports = [
  3. ...neostandard(),
  4. {
  5. name: 'node-0.10-compatibility',
  6. rules: {
  7. 'object-shorthand': 'off' // Disable ES6 object shorthand for Node.js 0.10 compatibility
  8. }
  9. }
  10. ]