The vscode configuration file isn't taking effect in my project. Even though I have specified in the .autocorrectrc file that space-bracket should be 0 to prevent adding spaces between "int" and "[]", the space always reappears when I save the file. This indicates that the configuration file is not working as expected.
Environments
OS: windows 10
VsCode Version: 1.90.2
AutoCorrect Plugin Version: v2.6.4
Directory tree
temptest
├── test.md
└── .autocorrectrc
The .autocorrectrc file is located in the root directory of the project.
rules:
# Auto add spacing between CJK (Chinese, Japanese, Korean) and English words.
# 0 - off, 1 - error, 2 - warning
space-word: 1
# Add space between some punctuations.
space-punctuation: 1
# Add space between brackets (), [] when near the CJK.
space-bracket: 0
Troubleshooting Steps Taken
restarted vscode, not work.
attempted to reload window using Ctrl + Shift + P, not work.
Is there something I missed in order to make the configuration work properly?
The vscode configuration file isn't taking effect in my project. Even though I have specified in the .autocorrectrc file that space-bracket should be 0 to prevent adding spaces between "int" and "[]", the space always reappears when I save the file. This indicates that the configuration file is not working as expected.
Environments
Directory tree
The .autocorrectrc file is located in the root directory of the project.
Test case
test.md
.autocorrectrc
Troubleshooting Steps Taken
Is there something I missed in order to make the configuration work properly?