yunohost-portal/.eslintrc.cjs

24 lines
474 B
JavaScript
Raw Normal View History

2023-07-19 18:38:53 +02:00
module.exports = {
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
},
extends: [
2023-07-25 22:22:59 +02:00
'plugin:vue/vue3-strongly-recommended',
2023-07-19 18:38:53 +02:00
'@nuxtjs/eslint-config-typescript',
'plugin:prettier/recommended',
2023-08-06 16:24:37 +02:00
'plugin:vuejs-accessibility/recommended',
2023-07-19 18:38:53 +02:00
],
rules: {
'prettier/prettier': [
'error',
{
semi: false,
tabWidth: 2,
singleQuote: true,
},
],
camelcase: 'warn',
2023-07-19 18:38:53 +02:00
},
}