mirror of
https://github.com/YunoHost/yunohost-portal.git
synced 2024-09-03 20:06:23 +02:00
22 lines
400 B
JavaScript
22 lines
400 B
JavaScript
|
module.exports = {
|
||
|
parser: 'vue-eslint-parser',
|
||
|
parserOptions: {
|
||
|
parser: '@typescript-eslint/parser',
|
||
|
},
|
||
|
extends: [
|
||
|
'plugin:vue/strongly-recommended',
|
||
|
'@nuxtjs/eslint-config-typescript',
|
||
|
'plugin:prettier/recommended',
|
||
|
],
|
||
|
rules: {
|
||
|
'prettier/prettier': [
|
||
|
'error',
|
||
|
{
|
||
|
semi: false,
|
||
|
tabWidth: 2,
|
||
|
singleQuote: true,
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
}
|