File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 15
15
"lint" : " yarn eslint && yarn prettier" ,
16
16
"pretest" : " yarn lint" ,
17
17
"test" : " jest --coverage" ,
18
- "autotest" : " chokidar src/index.js test/test.js -c 'yarn test' " ,
18
+ "autotest" : " jest --coverage --watch " ,
19
19
"cover" : " istanbul cover test/index.js" ,
20
20
"ci" : " yarn pretest && yarn cover" ,
21
21
"prepublishOnly" : " yarn test"
Original file line number Diff line number Diff line change @@ -137,6 +137,7 @@ module.exports = (options = {}) => {
137
137
138
138
if ( importsOrder instanceof Error ) {
139
139
const importPath = importsOrder . nodes . find ( ( importPath ) =>
140
+ // eslint-disable-next-line no-prototype-builtins
140
141
importDecls . hasOwnProperty ( importPath )
141
142
) ;
142
143
const decl = importDecls [ importPath ] ;
You can’t perform that action at this time.
0 commit comments