mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboViteDocs.git
synced 2026-06-16 21:36:30 +00: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',
|
||
|
|
}
|
||
|
|
}
|
||
|
|
]
|