You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
3 years ago
|
const DEPS_MAP = {
|
||
|
base: {
|
||
|
eslint: '^7.32.0',
|
||
|
'eslint-plugin-vue': '^8.0.3'
|
||
|
},
|
||
|
airbnb: {
|
||
|
'@vue/eslint-config-airbnb': '^6.0.0',
|
||
|
'eslint-plugin-import': '^2.25.3',
|
||
|
'eslint-plugin-vuejs-accessibility': '^1.1.0'
|
||
|
},
|
||
|
prettier: {
|
||
|
'eslint-config-prettier': '^8.3.0',
|
||
|
'eslint-plugin-prettier': '^4.0.0',
|
||
|
prettier: '^2.4.1'
|
||
|
},
|
||
|
standard: {
|
||
|
'@vue/eslint-config-standard': '^6.1.0',
|
||
|
'eslint-plugin-import': '^2.25.3',
|
||
|
'eslint-plugin-node': '^11.1.0',
|
||
|
'eslint-plugin-promise': '^5.1.0'
|
||
|
},
|
||
|
typescript: {
|
||
|
'@vue/eslint-config-typescript': '^9.1.0',
|
||
|
'@typescript-eslint/eslint-plugin': '^5.4.0',
|
||
|
'@typescript-eslint/parser': '^5.4.0'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
exports.DEPS_MAP = DEPS_MAP
|
||
|
|
||
|
exports.getDeps = function (api, preset, rootOptions = {}) {
|
||
|
const deps = Object.assign({}, DEPS_MAP.base, DEPS_MAP[preset])
|
||
|
|
||
|
if (api.hasPlugin('typescript')) {
|
||
|
Object.assign(deps, DEPS_MAP.typescript)
|
||
|
}
|
||
|
|
||
|
if (api.hasPlugin('babel') && !api.hasPlugin('typescript')) {
|
||
|
Object.assign(deps, {
|
||
|
'@babel/eslint-parser': '^7.12.16',
|
||
|
'@babel/core': '^7.12.16'
|
||
|
})
|
||
|
}
|
||
|
|
||
|
return deps
|
||
|
}
|