mirror of
https://github.com/ivuorinen/sysvinit-service-generator.git
synced 2026-02-15 04:52:09 +00:00
14 lines
270 B
JavaScript
14 lines
270 B
JavaScript
/* eslint-env node */
|
|
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
'plugin:vue/vue3-essential',
|
|
'eslint:recommended',
|
|
'@vue/eslint-config-typescript',
|
|
'@vue/eslint-config-prettier/skip-formatting'
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 'latest'
|
|
}
|
|
}
|