Skip to content

Commit

Permalink
fix: fix wording of excluded message (#1432)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S authored Oct 13, 2021
1 parent 352730c commit 1c3a6f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ function secondaryFileMessage(config: FileConfig | undefined): React.ReactFragme
[formatGitignoreMsg(gitignoreInfo), gitignored],
[linkGitignore, gitignored],
['File is excluded', fileIsInWorkspace && fileIsIncluded && fileIsExcluded],
['File in NOT in `files` to be checked.', fileIsInWorkspace && !fileIsIncluded],
['File is NOT in `files` to be checked.', fileIsInWorkspace && !fileIsIncluded],
['File is NOT in the workspace and excluded.', !fileIsInWorkspace && fileIsExcluded],
['File is NOT in the workspace.', !fileIsInWorkspace && !fileIsExcluded && fileEnabled],
['File is NOT spell checked because it is not in the workspace.', !fileIsInWorkspace && !fileIsExcluded && !fileEnabled],
Expand Down

0 comments on commit 1c3a6f7

Please sign in to comment.