OSS-BSS-Field-Dispatch/.eslintrc.cjs
louispaulb 1b0fc89304 Initial commit — OSS/BSS Field Dispatch app
Current state: custom CSS + vanilla Vue components
Architecture: modular with composables, provide/inject pattern
Ready for progressive migration to Quasar native components

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-24 14:11:40 -04:00

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',
},
}