Skip to content
Snippets Groups Projects
Commit 5c48878d authored by syuilo's avatar syuilo
Browse files

enhance(dev): 関数呼び出しの前にスペースを入れることを許可しない

parent 44985ae8
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ let queue = $ref(0);
let srcWhenNotSignin = $ref(isLocalTimelineAvailable ? 'local' : 'global');
const src = $computed({ get: () => ($i ? defaultStore.reactiveState.tl.value.src : srcWhenNotSignin), set: (x) => saveSrc(x) });
watch ($$(src), () => queue = 0);
watch($$(src), () => queue = 0);
function queueUpdated(q: number): void {
queue = q;
......
......@@ -64,6 +64,7 @@ module.exports = {
'object-curly-spacing': ['error', 'always'],
'space-infix-ops': ['error'],
'space-before-blocks': ['error', 'always'],
'func-call-spacing': ['error', 'never'],
'@typescript-eslint/no-explicit-any': ['warn'],
'@typescript-eslint/no-unused-vars': ['warn'],
'@typescript-eslint/no-unnecessary-condition': ['warn'],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment