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