File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,8 @@ module.exports = {
26
26
extends : [ 'eslint:recommended' , 'plugin:import/recommended' ] ,
27
27
env : {
28
28
browser : true ,
29
- node : true
29
+ node : true ,
30
+ es6 : true
30
31
} ,
31
32
rules : {
32
33
'@labset-eslint/license-notice' : [
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env node
2
2
3
+ const { Command } = require ( 'commander' ) ;
3
4
const SftpClient = require ( 'ssh2-sftp-client' ) ;
4
- const Command = require ( 'commander' ) . Command ;
5
5
6
6
const { envConfig } = require ( '../lib/env-config' ) ;
7
7
Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*/
16
- const Command = require ( 'commander' ) . Command ;
17
16
const axios = require ( 'axios' ) ;
17
+ const { Command } = require ( 'commander' ) ;
18
18
19
19
const paramRegex = / (?< key > [ a - z A - Z ) _ ] + ) = (?< value > .* ) / ;
20
20
You can’t perform that action at this time.
0 commit comments