File tree 2 files changed +32
-1
lines changed
2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change
1
+ // eslint-disable-next-line strict
2
+ import type { Linter , Rule } from 'eslint' ;
3
+
4
+ declare const plugin : {
5
+ meta : {
6
+ name : string ;
7
+ version : string ;
8
+ } ;
9
+ environments : {
10
+ globals : {
11
+ globals : {
12
+ [ key : string ] : boolean ;
13
+ } ;
14
+ } ;
15
+ } ;
16
+ configs : {
17
+ all : Linter . LegacyConfig ;
18
+ recommended : Linter . LegacyConfig ;
19
+ style : Linter . LegacyConfig ;
20
+ 'flat/all' : Linter . FlatConfig ;
21
+ 'flat/recommended' : Linter . FlatConfig ;
22
+ 'flat/style' : Linter . FlatConfig ;
23
+ } ;
24
+ rules : {
25
+ [ key : string ] : Rule . RuleModule ;
26
+ } ;
27
+ } ;
28
+
29
+ export = plugin ;
Original file line number Diff line number Diff line change 15
15
"url" : " jkimbo.com"
16
16
},
17
17
"main" : " lib/index.js" ,
18
+ "types" : " index.d.ts" ,
18
19
"files" : [
19
20
" docs/" ,
20
- " lib/"
21
+ " lib/" ,
22
+ " index.d.ts"
21
23
],
22
24
"scripts" : {
23
25
"build" : " babel --extensions .js,.ts src --out-dir lib --copy-files && rimraf --glob lib/__tests__ 'lib/**/__tests__'" ,
You can’t perform that action at this time.
0 commit comments