@@ -123,7 +123,6 @@ module.exports = {
123123 line : {
124124 // Ignore all lines that have less characters than 20 and all lines that
125125 // start with something that looks like a variable name or code.
126- // eslint-disable-next-line max-len
127126 ignorePattern : '.{0,20}$|[a-z]+ ?[0-9A-Z_.(/=:[#-]|std|http|ssh|ftp|(let|var|const) [a-z_A-Z0-9]+ =|[b-z] |[a-z]*[0-9].* ' ,
128127 ignoreInlineComments : true ,
129128 ignoreConsecutiveComments : true ,
@@ -165,14 +164,6 @@ module.exports = {
165164 'key-spacing' : [ 'error' , { mode : 'strict' } ] ,
166165 'keyword-spacing' : 'error' ,
167166 'linebreak-style' : [ 'error' , 'unix' ] ,
168- 'max-len' : [ 'error' , {
169- code : 80 ,
170- ignorePattern : '^// Flags:' ,
171- ignoreRegExpLiterals : true ,
172- ignoreTemplateLiterals : true ,
173- ignoreUrls : true ,
174- tabWidth : 2 ,
175- } ] ,
176167 'new-parens' : 'error' ,
177168 'no-async-promise-executor' : 'error' ,
178169 'no-case-declarations' : 'error' ,
@@ -215,7 +206,6 @@ module.exports = {
215206 'no-proto' : 'error' ,
216207 'no-redeclare' : [ 'error' , { 'builtinGlobals' : false } ] ,
217208 'no-restricted-modules' : [ 'error' , 'sys' ] ,
218- /* eslint-disable max-len */
219209 'no-restricted-properties' : [
220210 'error' ,
221211 {
@@ -268,7 +258,6 @@ module.exports = {
268258 message : 'Use Number.isNaN() instead of the global isNaN() function.' ,
269259 } ,
270260 ] ,
271- /* eslint-enable max-len */
272261 'no-return-await' : 'error' ,
273262 'no-self-assign' : 'error' ,
274263 'no-self-compare' : 'error' ,
0 commit comments