mirror of
https://codeberg.org/emersion/gamja
synced 2025-03-12 15:33:47 +01:00
Enable @stylistic/js/object-curly-spacing lint
This commit is contained in:
parent
9922d11654
commit
8d96f93fb5
@ -190,9 +190,10 @@ const commands = [
|
||||
throw new Error("Missing nick");
|
||||
}
|
||||
let activeChannel = getActiveChannel(app);
|
||||
getActiveClient(app).send({ command: "INVITE", params: [
|
||||
nick, activeChannel,
|
||||
]});
|
||||
getActiveClient(app).send({
|
||||
command: "INVITE",
|
||||
params: [nick, activeChannel],
|
||||
});
|
||||
},
|
||||
},
|
||||
{ ...join, name: "j" },
|
||||
|
@ -40,6 +40,7 @@ export default [
|
||||
"@stylistic/js/semi": "warn",
|
||||
"@stylistic/js/comma-dangle": ["warn", "always-multiline"],
|
||||
"@stylistic/js/arrow-parens": "warn",
|
||||
"@stylistic/js/object-curly-spacing": ["warn", "always"],
|
||||
},
|
||||
},
|
||||
];
|
||||
|
Loading…
x
Reference in New Issue
Block a user