Write the folders' names you don't want to see under folder_exclude_pattern option.
"folders": [ { "path": "templates", "folder_exclude_patterns": [ "i_dont_want_this_folder", "and this folder", "i_want_this/but not this" ] }, { "path": "js" } ]
Я могу выбрать папки, над которыми я хотел бы работать, используя разные пути внутри folders
массива в настройках Projects. Но что, если мне нужно всего несколько папок из папки templates
? И я не хочу видеть других. Как выполнить это ограничение?
Теперь есть что-то вроде этого:
"folders": [ { "path": "templates" }, { "path": "js" } ]
В templates
папке, например, существует папка users
. И мне нужно ограничить каталоги, которые должны быть показаны оттуда. folder_exclude_patterns: ['users/one', 'users/two']
не работает для меня
Write the folders' names you don't want to see under folder_exclude_pattern option.
"folders": [ { "path": "templates", "folder_exclude_patterns": [ "i_dont_want_this_folder", "and this folder", "i_want_this/but not this" ] }, { "path": "js" } ]