File tree Expand file tree Collapse file tree 5 files changed +1100
-2516
lines changed
Expand file tree Collapse file tree 5 files changed +1100
-2516
lines changed Original file line number Diff line number Diff line change 8787 steps :
8888 - uses : actions/setup-node@v6
8989 with :
90- node-version : 18 .x
90+ node-version : 22 .x
9191 - uses : actions/checkout@v6
9292 - uses : actions/cache@v4
9393 with :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ import js from "@eslint/js" ;
2+ import pluginVue from "eslint-plugin-vue" ;
3+ import {
4+ defineConfigWithVueTs ,
5+ vueTsConfigs
6+ } from "@vue/eslint-config-typescript" ;
7+ import pluginPrettierRecommended from "eslint-plugin-prettier/recommended" ;
8+ import process from "node:process" ;
9+
10+ export default defineConfigWithVueTs (
11+ js . configs . recommended ,
12+ pluginVue . configs [ "flat/recommended" ] ,
13+ vueTsConfigs . recommended ,
14+ pluginPrettierRecommended ,
15+ {
16+ rules : {
17+ "no-console" : process . env . NODE_ENV === "production" ? "warn" : "off" ,
18+ "no-debugger" : process . env . NODE_ENV === "production" ? "warn" : "off" ,
19+ "vue/multi-word-component-names" : "off" ,
20+ "vue/max-attributes-per-line" : "off" ,
21+ "vue/html-indent" : "off" ,
22+ "vue/html-closing-bracket-newline" : "off" ,
23+ "vue/singleline-html-element-content-newline" : "off" ,
24+ "vue/multiline-html-element-content-newline" : "off" ,
25+ "vue/html-self-closing" : "off"
26+ }
27+ } ,
28+ {
29+ ignores : [
30+ "dist/" ,
31+ "node_modules/" ,
32+ "coverage/" ,
33+ "test-results/" ,
34+ "playwright-report/" ,
35+ "public/"
36+ ]
37+ }
38+ ) ;
You can’t perform that action at this time.
0 commit comments