1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-15 04:15:32 +03:00

chore: add semi rule to the linter and run --fix

Adds semicolon to the linter rules.
This commit is contained in:
Tomas Chmelevskij 2021-02-14 07:37:03 +01:00
parent dfbd46c6f1
commit 616c2e796d
25 changed files with 103 additions and 102 deletions

View file

@ -345,7 +345,7 @@ TABS.firmware_flasher.initialize = function (callback) {
title: job.title,
loader: () => self.jenkinsLoader.loadBuilds(job.name, loadUnifiedBuilds)
};
})
});
var buildTypesToShow;
var buildType_e = $('select[name="build_type"]');
@ -741,7 +741,7 @@ TABS.firmware_flasher.initialize = function (callback) {
if ($('input.erase_chip').is(':checked')) {
options.erase_chip = true;
eraseAll = true
eraseAll = true;
}
analytics.setFirmwareData(analytics.DATA.FIRMWARE_ERASE_ALL, eraseAll.toString());
@ -1249,7 +1249,7 @@ TABS.firmware_flasher.enableFlashing = function (enabled) {
} else {
$('a.flash_firmware').addClass('disabled');
}
}
};
TABS.firmware_flasher.FLASH_MESSAGE_TYPES = {NEUTRAL : 'NEUTRAL',
VALID : 'VALID',