File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed
src/components/post/queryForm/widget Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 11// eslint-disable-next-line import-x/extensions
22import { withNuxt } from './.nuxt/eslint.config.mjs' ;
33import * as vueESLintParser from 'vue-eslint-parser' ;
4- // eslint-disable-next-line import-x/extensions
5- import vueESLintConfigTypescriptRecommendedExtends from '@vue/eslint-config-typescript/recommended.js' ;
4+ import vueEslintConfigTypeScript from '@vue/eslint-config-typescript' ;
65import pluginVue from 'eslint-plugin-vue' ;
76import { FlatCompat } from '@eslint/eslintrc' ;
87import eslintJs from '@eslint/js' ;
@@ -548,7 +547,7 @@ const compat = new FlatCompat();
548547export default withNuxt (
549548 eslintJs . configs . recommended ,
550549 ...pluginVue . configs [ 'flat/recommended' ] ,
551- ...compat . config ( vueESLintConfigTypescriptRecommendedExtends ) , // https://github.com/vuejs/eslint-config-typescript/issues/76#issuecomment-2148720004
550+ ...vueEslintConfigTypeScript ( { extends : [ 'recommended' ] } ) ,
552551 ...compat . extends ( // https://github.com/ota-meshi/typescript-eslint-parser-for-extra-files/issues/95#issuecomment-2148604881
553552 'plugin:@typescript-eslint/strict-type-checked' ,
554553 'plugin:@typescript-eslint/stylistic-type-checked' ,
Original file line number Diff line number Diff line change 11<template >
22<select v-model =" modelValue" class =" form-select form-control flex-grow-0" >
3- <option > & lt ; </ option >
4- < option >=</ option >
5- < option > & gt ; </ option >
6- < option >IN</ option >
7- <option >BETWEEN< /option >
3+ <option
4+ v-for = " value in numericParamSubParamRangeValues " :key = " value "
5+ :selected = " value === modelValue " >
6+ {{ value }}
7+ </option >
88</select >
99</template >
1010
You can’t perform that action at this time.
0 commit comments