2024-02-10 09:55:11 +00:00
|
|
|
/* eslint-env node */
|
|
|
|
require('@rushstack/eslint-patch/modern-module-resolution');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
extends: [
|
|
|
|
'plugin:vue/vue3-essential',
|
|
|
|
'eslint:recommended',
|
|
|
|
'@vue/eslint-config-typescript',
|
|
|
|
'@vue/eslint-config-prettier/skip-formatting',
|
|
|
|
],
|
|
|
|
parserOptions: {
|
|
|
|
ecmaVersion: 'latest',
|
|
|
|
},
|
2024-02-10 17:30:47 +00:00
|
|
|
ignorePatterns: ['pocketbase/'],
|
2024-02-10 09:55:11 +00:00
|
|
|
};
|