forked from FOSS/BangleApps
Remove "no-extra-semi": "off" and make linter happy
parent
cb90425fdf
commit
ff18d5c201
|
@ -34,7 +34,6 @@
|
|||
"no-constant-condition": "off",
|
||||
"no-delete-var": "off",
|
||||
"no-empty": "off",
|
||||
"no-extra-semi": "off",
|
||||
"no-inner-declarations": "off",
|
||||
"no-mixed-spaces-and-tabs": "off",
|
||||
"no-octal": "off",
|
||||
|
|
|
@ -190,7 +190,7 @@ function setButtons(){
|
|||
setWatch(nextwp.bind(null,-1), BTN1, {repeat:true,edge:"falling"});
|
||||
setWatch(doselect, BTN2, {repeat:true,edge:"falling"});
|
||||
setWatch(nextwp.bind(null,1), BTN3, {repeat:true,edge:"falling"});
|
||||
};
|
||||
}
|
||||
|
||||
var SCREENACCESS = {
|
||||
withApp:true,
|
||||
|
|
|
@ -95,7 +95,7 @@ function startKeyboardHID() {
|
|||
getCharacter().then(ch => {
|
||||
return sendHID(KEY[ch]);
|
||||
}).then(startKeyboardHID);
|
||||
};
|
||||
}
|
||||
|
||||
if (settings.HID=="kb" || settings.HID=="kbmedia") {
|
||||
if (settings.HID=="kbmedia") {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
(function(back) {
|
||||
function updateSettings() {
|
||||
storage.write('numerals.json', numeralsSettings);
|
||||
};
|
||||
}
|
||||
function resetSettings() {
|
||||
numeralsSettings = {
|
||||
color:0,
|
||||
|
|
Loading…
Reference in New Issue