diff --git a/.editorconfig b/.editorconfig index 902ab8f..d08712d 100644 --- a/.editorconfig +++ b/.editorconfig @@ -4,7 +4,7 @@ root = true charset = utf-8 end_of_line = lf indent_size = 4 -indent_style = tab +indent_style = space insert_final_newline = true #max_line_length = 120 tab_width = 4 @@ -19,6 +19,6 @@ indent_style = space tab_width = 2 -[{*.nix,*.json}] +[{*.nix,*.json,*.js}] indent_style = space indent_size = 2 diff --git a/users/nick/finicky.js b/users/nick/finicky.js index d9a5ed9..8a439dd 100644 --- a/users/nick/finicky.js +++ b/users/nick/finicky.js @@ -1,16 +1,16 @@ module.exports = { - defaultBrowser: "Safari", - options: { - hideIcon: true, - }, - rewrite: [ - { - match: "https://app.clickup.com/*", - url: ({ url }) => ({ - ...url, - host: "", - protocol: "clickup" - }) - }, - ] + defaultBrowser: "Safari", + options: { + hideIcon: true, + }, + rewrite: [ + { + match: "https://app.clickup.com/*", + url: ({ url }) => ({ + ...url, + host: "", + protocol: "clickup" + }) + }, + ] };