mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-08 20:10:16 +08:00
15 lines
196 B
JavaScript
15 lines
196 B
JavaScript
|
|
'use strict'
|
||
|
|
|
||
|
|
const base = require('neostandard')({})
|
||
|
|
|
||
|
|
module.exports = [
|
||
|
|
...base,
|
||
|
|
{
|
||
|
|
name: 'old-standard',
|
||
|
|
rules: {
|
||
|
|
'no-var': 'off',
|
||
|
|
'object-shorthand': 'off',
|
||
|
|
}
|
||
|
|
}
|
||
|
|
]
|