You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The readme states the default value for this property is /[\/\\]\./. I assumed that overriding it would stop this default ignore from working, but if I create ".filename" then this does appear to be ignored. This leads me to believe the property from my config file is maybe being ignored.
The text was updated successfully, but these errors were encountered:
I'm not 100% sure what you need to include BUT I do know that the configuration may require escaping. Below are the important parts of the code that may help you understand how to configure your ignoreList.
Default config in app.js
// ignore hidden files/dirs like .sync_data and full records when watching for changes
constants.chokiWatcherIgnore = [/[\/\\]\./, '**/*' + constants.fullRecordSuffix];
The custom setting overrides the default (completely!!)
I have added the following to my config file:
"ignoreList": ["*.todo"]
But I still get this in the console when I start the app:
I have also tried the following to no avail:
"ignoreList": ["./*.todo"]
"ignoreList": ["/.*\\.todo/"]
"ignoreList": "*.todo"
The readme states the default value for this property is
/[\/\\]\./
. I assumed that overriding it would stop this default ignore from working, but if I create ".filename" then this does appear to be ignored. This leads me to believe the property from my config file is maybe being ignored.The text was updated successfully, but these errors were encountered: