Skip to content

Commit 0298094

Browse files
committed
Lint fixes
1 parent 16e8e2d commit 0298094

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/project/config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)