mirror of
https://github.com/zvx-echo6/meshai.git
synced 2026-08-26 17:31:34 +00:00
11 lines
244 B
JavaScript
11 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
|
||
|
|
}
|
||
|
|
}
|
||
|
|
]
|