Merge pull request #385 from Codium-ai/hl/fix_add_docs_in_scripts

Add Blacklist for Non-Editable File Extensions in Documentation
This commit is contained in:
Hussam Lawen
2023-10-19 11:21:36 +03:00
committed by GitHub
2 changed files with 8 additions and 0 deletions

View File

@ -433,3 +433,6 @@ reStructuredText = [".rst", ".rest", ".rest.txt", ".rst.txt", ]
wisp = [".wisp", ]
xBase = [".prg", ".prw", ]
[docs_blacklist_extensions]
# Disable docs for these extensions of text files and scripts that are not programming languages of function, classes and methods
docs_blacklist = ['sql', 'txt', 'yaml', 'json', 'xml', 'md', 'rst', 'rest', 'rest.txt', 'rst.txt', 'mdpolicy', 'mdown', 'markdown', 'mdwn', 'mkd', 'mkdn', 'mkdown', 'sh']