File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 1+ import type { Linter , Rule } from 'eslint' ;
2+
3+ declare const plugin : {
4+ meta : {
5+ name : string ;
6+ version : string ;
7+ } ;
8+ configs : {
9+ angular : Linter . LegacyConfig ;
10+ dom : Linter . LegacyConfig ;
11+ marko : Linter . LegacyConfig ;
12+ react : Linter . LegacyConfig ;
13+ vue : Linter . LegacyConfig ;
14+ 'flat/angular' : Linter . FlatConfig ;
15+ 'flat/dom' : Linter . FlatConfig ;
16+ 'flat/marko' : Linter . FlatConfig ;
17+ 'flat/react' : Linter . FlatConfig ;
18+ 'flat/vue' : Linter . FlatConfig ;
19+ } ;
20+ rules : {
21+ [ key : string ] : Rule . RuleModule ;
22+ } ;
23+ } ;
24+
25+ export = plugin ;
Original file line number Diff line number Diff line change 2727 "files" : [
2828 " dist" ,
2929 " README.md" ,
30- " LICENSE"
30+ " LICENSE" ,
31+ " index.d.ts"
3132 ],
3233 "main" : " ./dist/index.js" ,
34+ "types" : " index.d.ts" ,
3335 "scripts" : {
3436 "prebuild" : " del-cli dist" ,
3537 "build" : " tsc" ,
You can’t perform that action at this time.
0 commit comments