File tree Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ type ConfigName =
2+ | "base"
3+ | "essential"
4+ | "no-layout-rules"
5+ | "recommended"
6+ | "strongly-recommended"
7+ | "vue3-essential"
8+ | "vue3-recommended"
9+ | "vue3-strongly-recommended"
10+ | "flat/base"
11+ | "flat/vue2-essential"
12+ | "flat/vue2-recommended"
13+ | "flat/vue2-strongly-recommended"
14+ | "flat/essential"
15+ | "flat/recommended"
16+ | "flat/strongly-recommended"
17+
18+ declare const vue : {
19+ meta : any
20+ configs : {
21+ [ name in keyof ConfigName ] : any
22+ }
23+ rules : Record < string , any >
24+ processors : {
25+ ".vue" : any
26+ vue : any
27+ }
28+ environments : {
29+ /**
30+ * @deprecated
31+ */
32+ "setup-compiler-macros" : {
33+ globals : {
34+ defineProps : "readonly"
35+ defineEmits : "readonly"
36+ defineExpose : "readonly"
37+ withDefaults : "readonly"
38+ }
39+ }
40+ }
41+ }
42+
43+ export = vue
Original file line number Diff line number Diff line change 33 "version" : " 9.28.0" ,
44 "description" : " Official ESLint plugin for Vue.js" ,
55 "main" : " lib/index.js" ,
6+ "types" : " lib/index.d.ts" ,
67 "scripts" : {
78 "new" : " node tools/new-rule.js" ,
89 "start" : " npm run test:base -- --watch --growl" ,
You can’t perform that action at this time.
0 commit comments