File tree 4 files changed +6
-9
lines changed
4 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env node
2
- import 'core-js/stable' ; // eslint-disable-line import/no-unassigned-import
3
- import 'regenerator-runtime/runtime' ; // eslint-disable-line import/no-unassigned-import
2
+ import 'core-js/stable' ;
3
+ import 'regenerator-runtime/runtime' ;
4
4
5
5
import load from '@commitlint/load' ;
6
6
import lint from '@commitlint/lint' ;
Original file line number Diff line number Diff line change 1
- /* eslint-disable import/no-unassigned-import, import/prefer-default-export */
2
1
import vorpal from 'vorpal' ;
3
2
import input from './input' ;
4
3
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ import settings from './settings';
8
8
9
9
export default input ;
10
10
11
- /* eslint-disable valid-jsdoc */
12
11
/**
13
12
* Get user input by interactive prompt based on
14
13
* conventional-changelog-lint rules.
@@ -48,7 +47,6 @@ async function input(prompter) {
48
47
}
49
48
50
49
results [ input ] = await getPrompt ( input , {
51
- // eslint-disable-line no-await-in-loop
52
50
rules : inputRules ,
53
51
settings : inputSettings ,
54
52
results,
Original file line number Diff line number Diff line change @@ -91,10 +91,10 @@ function main(cli) {
91
91
}
92
92
93
93
return {
94
- pkg : pkg , // eslint-disable-line object-shorthand
95
- pkgFiles : pkgFiles , // eslint-disable-line object-shorthand
94
+ pkg : pkg ,
95
+ pkgFiles : pkgFiles ,
96
96
files : tarball . files ,
97
- problems : problems // eslint-disable-line object-shorthand
97
+ problems : problems
98
98
} ;
99
99
} ) ;
100
100
} ) ;
@@ -165,7 +165,7 @@ function getArchiveFiles(filePath, options) {
165
165
. once ( 'finish' , ( ) =>
166
166
resolve ( {
167
167
dirname : path . join ( path . dirname ( filePath ) , 'package' ) ,
168
- files : files // eslint-disable-line object-shorthand
168
+ files : files
169
169
} )
170
170
) ;
171
171
} ) ;
You can’t perform that action at this time.
0 commit comments