diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-10-02 20:11:43 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-10-03 15:48:31 +0200 |
commit | cc0eebd9d8a42f3e57d4633c4388faa6d369d2c8 (patch) | |
tree | e539714cf844f473b5417ee388f9eeab113a863c /doc/classes/CodeEdit.xml | |
parent | a2f90d565ad29edcb3bdab77bc7df51cdde8514a (diff) | |
download | redot-engine-cc0eebd9d8a42f3e57d4633c4388faa6d369d2c8.tar.gz |
Validate `code` tags for class and member references
This commit also adds means to manually disable warnings
in `code` tags where it's a false positive with the new
`skip-lint` attribute.
Warnings are now enabled on CI to prevent future errors.
Diffstat (limited to 'doc/classes/CodeEdit.xml')
-rw-r--r-- | doc/classes/CodeEdit.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/CodeEdit.xml b/doc/classes/CodeEdit.xml index e5c255706f..ec0c2fbf06 100644 --- a/doc/classes/CodeEdit.xml +++ b/doc/classes/CodeEdit.xml @@ -544,7 +544,7 @@ Prefixes to trigger an automatic indent. </member> <member name="indent_size" type="int" setter="set_indent_size" getter="get_indent_size" default="4"> - Size of tabs, if [code]indent_use_spaces[/code] is enabled the number of spaces to use. + Size of the tabulation indent (one [kbd]Tab[/kbd] press) in characters. If [member indent_use_spaces] is enabled the number of spaces to use. </member> <member name="indent_use_spaces" type="bool" setter="set_indent_using_spaces" getter="is_indent_using_spaces" default="false"> Use spaces instead of tabs for indentation. |