domino-client/.eslintrc.cjs

16 lines
334 B
JavaScript
Raw Permalink Normal View History

2024-06-29 16:40:11 +02:00
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')
module.exports = {
root: true,
2024-07-16 02:14:50 +02:00
extends: [
2024-06-29 16:40:11 +02:00
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-typescript',
2024-07-16 02:14:50 +02:00
'@vue/eslint-config-prettier/skip-formatting',
2024-06-29 16:40:11 +02:00
],
parserOptions: {
2024-07-16 02:14:50 +02:00
ecmaVersion: 'latest',
},
2024-06-29 16:40:11 +02:00
}