mirror of
https://github.com/tbnobody/OpenDTU.git
synced 2025-12-11 17:30:37 +01:00
15 lines
282 B
JavaScript
15 lines
282 B
JavaScript
|
|
/* 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'
|
||
|
|
],
|
||
|
|
parserOptions: {
|
||
|
|
ecmaVersion: 'latest'
|
||
|
|
}
|
||
|
|
}
|