1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-19 14:25:14 +03:00

Merge pull request #2411 from chmelevskij/add-semi-to-eslint

chore: add `semi` rule to the linter and run `--fix`
This commit is contained in:
Michael Keller 2021-02-17 07:52:18 +13:00 committed by GitHub
commit 99e36744d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 103 additions and 102 deletions

View file

@ -1,7 +1,7 @@
'use strict';
const ConfigInserter = function () {
}
};
const CUSTOM_DEFAULTS_POINTER_ADDRESS = 0x08002800;
const BLOCK_SIZE = 16384;
@ -104,4 +104,4 @@ ConfigInserter.prototype.insertConfig = function (firmware, input) {
console.timeEnd(CONFIG_LABEL);
return true;
}
};