mirror of
https://github.com/mivodev/mivodev.github.io.git
synced 2026-01-26 13:32:07 +07:00
12 lines
244 B
JavaScript
12 lines
244 B
JavaScript
const neostandard = require('neostandard')
|
|
|
|
module.exports = [
|
|
...neostandard(),
|
|
{
|
|
name: 'node-0.10-compatibility',
|
|
rules: {
|
|
'object-shorthand': 'off' // Disable ES6 object shorthand for Node.js 0.10 compatibility
|
|
}
|
|
}
|
|
]
|