Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .codespellrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = .git*,*.svg,package-lock.json,*.css,.codespellrc
skip = .git*,*.svg,package-lock.json,*.css,.codespellrc,dist
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The pattern dist only matches at the root level. Since the project contains a frontend directory, the build output (likely frontend/dist) will not be skipped by this pattern. Using **/dist is more effective for ignoring build artifacts in subdirectories.

Additionally, adding **/node_modules to the skip list is strongly recommended to improve performance and avoid false positives from third-party code, which is especially relevant given that check-hidden is set to true.

skip = .git*,*.svg,package-lock.json,*.css,.codespellrc,**/dist,**/node_modules

check-hidden = true
# ignore-regex =
# ignore-words-list =
Loading