File tree 3 files changed +1
-5
lines changed
3 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ module.exports = {
12
12
"rules" : {
13
13
"array-bracket-newline" : [ "error" , { "multiline" : true } ] ,
14
14
"func-names" : "off" ,
15
+ "no-underscore-dangle" : "off" ,
15
16
"function-paren-newline" : "off" ,
16
17
"indent" : [
17
18
"error" ,
Original file line number Diff line number Diff line change 1
- /* eslint-disable no-underscore-dangle */
2
-
3
1
const cheerio = require ( 'cheerio' ) ;
4
2
const ejs = require ( 'ejs' ) ;
5
3
const fs = require ( 'fs-extra-promise' ) ;
@@ -820,7 +818,6 @@ Site.prototype.deploy = function () {
820
818
} ) ;
821
819
} ;
822
820
823
- // eslint-disable-next-line no-underscore-dangle
824
821
Site . prototype . _setTimestampVariable = function ( ) {
825
822
const time = new Date ( ) . toUTCString ( ) ;
826
823
Object . keys ( this . userDefinedVariablesMap ) . forEach ( ( base ) => {
Original file line number Diff line number Diff line change 1
- /* eslint-disable no-underscore-dangle */
2
-
3
1
const cheerio = require ( 'cheerio' ) ;
4
2
const fs = require ( 'fs' ) ;
5
3
const htmlparser = require ( 'htmlparser2' ) ;
You can’t perform that action at this time.
0 commit comments