diff --git a/.github/codespellrc b/.github/codespellrc index ec270a8d6..06caa448f 100644 --- a/.github/codespellrc +++ b/.github/codespellrc @@ -1,3 +1,3 @@ [codespell] -skip = ./elixir/apps/domain/lib/domain/name_generator.ex,./**/*.svg,./elixir/deps,./**/*.min.js,./kotlin/android/app/build,./kotlin/android/build,./e2e/pnpm-lock.yaml,./website/.next,./website/pnpm-lock.yaml,./rust/connlib/tunnel/testcases,./rust/gui-client/dist,./rust/target,Cargo.lock,./website/docs/reference/api/*.mdx,./**/erl_crash.dump,./cover,./vendor,*.json,seeds.exs,./**/node_modules,./deps,./priv/static,./priv/plts,./**/priv/static,./.git,./_build,*.cast,./**/proptest-regressions -ignore-words-list = optin,crate,keypair,keypairs,iif,statics,wee,anull,commitish,inout,fo,superceded,ect +skip = ./elixir/_build,./elixir/apps/domain/lib/domain/name_generator.ex,./**/*.svg,./elixir/deps,./**/*.min.js,./kotlin/android/app/build,./kotlin/android/build,./e2e/pnpm-lock.yaml,./website/.next,./website/pnpm-lock.yaml,./rust/connlib/tunnel/testcases,./rust/gui-client/dist,./rust/target,Cargo.lock,./website/docs/reference/api/*.mdx,./**/erl_crash.dump,./cover,./vendor,*.json,seeds.exs,./**/node_modules,./deps,./priv/static,./priv/plts,./**/priv/static,./.git,./_build,*.cast,./**/proptest-regressions +ignore-words-list = optin,crate,keypair,keypairs,iif,statics,wee,anull,commitish,inout,fo,superceded,ect,installin diff --git a/.github/requirements.txt b/.github/requirements.txt index e47f9e1ae..474c9b61e 100644 --- a/.github/requirements.txt +++ b/.github/requirements.txt @@ -1,2 +1,2 @@ pre-commit==4.2.0 -codespell==2.2.6 +codespell==2.4.1 diff --git a/elixir/apps/domain/priv/repo/migrations/20221226143651_move_sites_fields_to_configurations.exs b/elixir/apps/domain/priv/repo/migrations/20221226143651_move_sites_fields_to_configurations.exs index e38029734..a8465ac4a 100644 --- a/elixir/apps/domain/priv/repo/migrations/20221226143651_move_sites_fields_to_configurations.exs +++ b/elixir/apps/domain/priv/repo/migrations/20221226143651_move_sites_fields_to_configurations.exs @@ -3,7 +3,7 @@ defmodule Domain.Repo.Migrations.MoveSitesFieldsToConfigurations do @doc """ XXX: The following env vars are used to configure interface settings - on bootup and so we don't want to store them in the DB or update them + on boot-up and so we don't want to store them in the DB or update them at runtime. Leave them out of this migration. WIREGUARD_IPV4_ENABLED diff --git a/rust/gui-client/src-tauri/src/ipc/windows.rs b/rust/gui-client/src-tauri/src/ipc/windows.rs index a5897c400..88b7cb195 100644 --- a/rust/gui-client/src-tauri/src/ipc/windows.rs +++ b/rust/gui-client/src-tauri/src/ipc/windows.rs @@ -166,7 +166,7 @@ fn ipc_path(id: SocketId) -> String { /// /// * `id` - BUNDLE_ID, e.g. `dev.firezone.client` /// -/// Public because the GUI Client re-uses this for deep links. Eventually that code +/// Public because the GUI Client reuses this for deep links. Eventually that code /// will be de-duped into this code. pub fn named_pipe_path(id: &str) -> String { format!(r"\\.\pipe\{}", id)