File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ export default class ProjectConfig {
5959 }
6060
6161 // Section
62- let mSection = line . match ( this . reSection ) ;
62+ const mSection = line . match ( this . reSection ) ;
6363 if ( mSection ) {
6464 section = mSection [ 1 ] ;
6565 if ( ! this . _data [ section ] ) {
@@ -70,15 +70,15 @@ export default class ProjectConfig {
7070 }
7171
7272 // Option and value
73- let mOptionValue = line . match ( this . reOptionValue ) ;
73+ const mOptionValue = line . match ( this . reOptionValue ) ;
7474 if ( section && mOptionValue ) {
7575 option = mOptionValue [ 1 ] . trim ( ) ;
7676 this . _data [ section ] [ option ] = mOptionValue [ 2 ] . trim ( ) ;
7777 continue ;
7878 }
7979
8080 // Multi-line value
81- let mMultiLineValue = line . match ( this . reMultiLineValue ) ;
81+ const mMultiLineValue = line . match ( this . reMultiLineValue ) ;
8282 if ( option && mMultiLineValue ) {
8383 this . _data [ section ] [ option ] += '\n' + mMultiLineValue [ 0 ] ;
8484 }
You can’t perform that action at this time.
0 commit comments