1
0
mirror of https://github.com/1C-Company/v8-code-style.git synced 2025-03-04 16:15:57 +02:00
2022-08-03 18:47:32 +03:00

727 B

Configuration module texts should not contain unused export procedures and functions

Make sure your configuration does not contain unused metadata objects, such as catalogs, documents, command interface sections, and other. Also it must not contain the code of common modules, procedures, functions, and variables, which is not used in the configuration and for integration with other systems.

Noncompliant Code Example

Procedure Processing() Export
EndProcedure

Compliant Solution

#Region Public
Procedure Processing() Export
EndProcedure
#EndRegion

See