mirror of
https://git.sr.ht/~emersion/gamja
synced 2024-11-14 03:04:59 -05:00
Prefix unused variables with an underscore
This commit is contained in:
parent
b89fd604d0
commit
97920ff7f6
3 changed files with 4 additions and 4 deletions
|
@ -55,7 +55,7 @@ function isProduction() {
|
|||
// NODE_ENV is set by the Parcel build system
|
||||
try {
|
||||
return process.env.NODE_ENV === "production";
|
||||
} catch (err) {
|
||||
} catch (_err) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -1960,7 +1960,7 @@ export default class App extends Component {
|
|||
|
||||
handleOpenSettingsClick() {
|
||||
let showProtocolHandler = false;
|
||||
for (let [id, client] of this.clients) {
|
||||
for (let [_id, client] of this.clients) {
|
||||
if (client.caps.enabled.has("soju.im/bouncer-networks")) {
|
||||
showProtocolHandler = true;
|
||||
break;
|
||||
|
|
|
@ -272,7 +272,7 @@ export function parseTargetPrefix(s, allowedPrefixes = STD_MEMBERSHIPS) {
|
|||
const alphaNum = (() => {
|
||||
try {
|
||||
return new RegExp(/^[\p{L}0-9]$/, "u");
|
||||
} catch (e) {
|
||||
} catch (_e) {
|
||||
return new RegExp(/^[a-zA-Z0-9]$/, "u");
|
||||
}
|
||||
})();
|
||||
|
|
2
state.js
2
state.js
|
@ -486,7 +486,7 @@ export const State = {
|
|||
channel = msg.params[0];
|
||||
|
||||
if (client.isMyNick(msg.prefix.name)) {
|
||||
let [id, update] = State.createBuffer(state, channel, serverID, client);
|
||||
let [_id, update] = State.createBuffer(state, channel, serverID, client);
|
||||
state = { ...state, ...update };
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue