mirror of
https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2025-10-03 16:20:58 +08:00
14 lines
196 B
JavaScript
14 lines
196 B
JavaScript
'use strict'
|
|
|
|
const base = require('neostandard')({})
|
|
|
|
module.exports = [
|
|
...base,
|
|
{
|
|
name: 'old-standard',
|
|
rules: {
|
|
'no-var': 'off',
|
|
'object-shorthand': 'off',
|
|
}
|
|
}
|
|
]
|