Integrates the Dispatch PWA (Vue/Quasar) into the gigafibre-fsm monorepo. Full git history accessible via `git log -- apps/dispatch/`. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
11 lines
260 B
JavaScript
11 lines
260 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parserOptions: { ecmaVersion: 'latest' },
|
|
env: { browser: true },
|
|
extends: ['plugin:vue/vue3-essential', 'eslint:recommended'],
|
|
rules: {
|
|
'no-unused-vars': 'warn',
|
|
'vue/multi-word-component-names': 'off',
|
|
},
|
|
}
|