├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── check.md │ ├── check_false.md │ ├── check_not_found.md │ ├── config.yml │ ├── documentation.md │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build.yml │ ├── ci-build.yml │ ├── fork-pull.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── NOTICE.md ├── README.md ├── bom ├── .project ├── .settings │ └── org.eclipse.core.resources.prefs ├── html │ ├── css │ │ └── prism.css │ ├── footer.html │ ├── header.html │ └── js │ │ └── prism.js ├── pom.xml └── set_version.sh ├── bundles ├── com.e1c.v8codestyle.autosort.ui │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ ├── plugin_ru.properties │ ├── pom.xml │ └── src │ │ └── com │ │ └── e1c │ │ └── v8codestyle │ │ ├── autosort │ │ └── ui │ │ │ └── properties │ │ │ ├── AutoSortPropertyPage.java │ │ │ ├── Messages.java │ │ │ ├── messages.properties │ │ │ └── messages_ru.properties │ │ └── internal │ │ └── autosort │ │ └── ui │ │ ├── ExternalDependenciesModule.java │ │ ├── MdSortPreferenceChangeNotifier.java │ │ ├── Messages.java │ │ ├── UiExecutableExtensionFactory.java │ │ ├── UiPlugin.java │ │ ├── messages.properties │ │ └── messages_ru.properties ├── com.e1c.v8codestyle.autosort │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ ├── plugin_ru.properties │ ├── pom.xml │ └── src │ │ └── com │ │ └── e1c │ │ └── v8codestyle │ │ ├── autosort │ │ ├── AutoSortPreferences.java │ │ ├── ISortService.java │ │ ├── ListConstants.java │ │ └── SortItem.java │ │ └── internal │ │ └── autosort │ │ ├── AutoSortPlugin.java │ │ ├── AutoSortProjectOptionProvider.java │ │ ├── ExecutableExtensionFactory.java │ │ ├── ExternalDependenciesModule.java │ │ ├── Messages.java │ │ ├── ServiceModule.java │ │ ├── SortBmTask.java │ │ ├── SortJob.java │ │ ├── SortService.java │ │ ├── cli │ │ ├── Messages.java │ │ ├── SortCommand.java │ │ ├── messages.properties │ │ └── messages_ru.properties │ │ ├── messages.properties │ │ └── messages_ru.properties ├── com.e1c.v8codestyle.bsl.ui │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── icons │ │ ├── BslDocComment.png │ │ ├── BslDocComment@2x.png │ │ └── obj16 │ │ │ ├── attribute.png │ │ │ ├── attribute@2x.png │ │ │ ├── attribute_dark.png │ │ │ ├── attribute_dark@2x.png │ │ │ ├── description.png │ │ │ ├── description@2x.png │ │ │ ├── description_dark.png │ │ │ ├── description_dark@2x.png │ │ │ ├── link.png │ │ │ ├── link@2x.png │ │ │ ├── link_dark.png │ │ │ ├── link_dark@2x.png │ │ │ ├── parameters_section.png │ │ │ ├── parameters_section@2x.png │ │ │ ├── parameters_section_dark.png │ │ │ ├── parameters_section_dark@2x.png │ │ │ ├── text.png │ │ │ ├── text@2x.png │ │ │ ├── text_dark.png │ │ │ ├── text_dark@2x.png │ │ │ ├── type.png │ │ │ ├── type@2x.png │ │ │ ├── type_dark.png │ │ │ ├── type_dark@2x.png │ │ │ ├── type_section.png │ │ │ ├── type_section@2x.png │ │ │ ├── type_section_dark.png │ │ │ └── type_section_dark@2x.png │ ├── plugin.properties │ ├── plugin.xml │ ├── plugin_ru.properties │ ├── pom.xml │ └── src │ │ └── com │ │ └── e1c │ │ └── v8codestyle │ │ ├── bsl │ │ └── ui │ │ │ └── qfix │ │ │ ├── CommonModuleNamedSelfReferenceFix.java │ │ │ ├── ConvertFunctionToProcedureFix.java │ │ │ ├── FormSelfReferenceOutdatedFix.java │ │ │ ├── ManagerModuleNamedSelfReferenceFix.java │ │ │ ├── Messages.java │ │ │ ├── OpenBslDocCommentViewFix.java │ │ │ ├── QuickFixMethodsHelper.java │ │ │ ├── SelfReferenceFix.java │ │ │ ├── ServerExecutionSafeModeFix.java │ │ │ ├── UndefinedFunctionFix.java │ │ │ ├── UndefinedMethodFix.java │ │ │ ├── UndefinedVariableFix.java │ │ │ ├── messages.properties │ │ │ └── messages_ru.properties │ │ └── internal │ │ └── bsl │ │ └── ui │ │ ├── ExecutableExtensionFactory.java │ │ ├── ExternalDependenciesModule.java │ │ ├── MultiCheckFixRegistrator.java │ │ ├── SharedImages.java │ │ ├── UiPlugin.java │ │ ├── handlers │ │ ├── AddStrictTypeAnnotationHandler.java │ │ ├── AddStrictTypeAnnotationModuleEditorHandler.java │ │ ├── FormatDocCommentModuleEditorHandler.java │ │ ├── Messages.java │ │ ├── messages.properties │ │ └── messages_ru.properties │ │ ├── preferences │ │ ├── Messages.java │ │ ├── ModuleStructurePreferencePage.java │ │ ├── messages.properties │ │ └── messages_ru.properties │ │ ├── properties │ │ ├── Messages.java │ │ ├── ModuleStructurePropertyPage.java │ │ ├── messages.properties │ │ └── messages_ru.properties │ │ ├── services │ │ ├── BslModuleOffsets.java │ │ ├── BslModuleRegionsInfo.java │ │ └── BslModuleRegionsInfoService.java │ │ ├── views │ │ ├── BslDocCommentSelectionListener.java │ │ ├── BslDocCommentView.java │ │ ├── BslDocumentationCommentContentProvider.java │ │ ├── Messages.java │ │ ├── messages.properties │ │ └── messages_ru.properties │ │ └── wizard │ │ ├── AbstractModuleNewWizardRelatedModelsFactory.java │ │ ├── ModuleStrictTypesNewWizardRelatedModelsFactory.java │ │ └── ModuleStructureNewWizardRelatedModelsFactory.java ├── com.e1c.v8codestyle.bsl │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── check.descriptions │ │ └── .gitignore │ ├── markdown │ │ ├── begin-transaction.md │ │ ├── bsl-canonical-pragma.md │ │ ├── bsl-nstr-string-literal-format.md │ │ ├── bsl-variable-name-invalid.md │ │ ├── change-and-validate-instead-of-around.md │ │ ├── code-after-async-call.md │ │ ├── commit-transaction.md │ │ ├── common-module-missing-api.md │ │ ├── common-module-named-self-reference.md │ │ ├── constructor-function-return-section.md │ │ ├── data-exchange-load.md │ │ ├── deprecated-procedure-outside-deprecated-region.md │ │ ├── doc-comment-collection-item-type.md │ │ ├── doc-comment-complex-type-with-link.md │ │ ├── doc-comment-description-ends-on-dot.md │ │ ├── doc-comment-export-function-return-section.md │ │ ├── doc-comment-export-procedure-description-section.md │ │ ├── doc-comment-field-in-description-suggestion.md │ │ ├── doc-comment-field-name.md │ │ ├── doc-comment-field-type-strict.md │ │ ├── doc-comment-field-type.md │ │ ├── doc-comment-parameter-in-description-suggestion.md │ │ ├── doc-comment-parameter-section.md │ │ ├── doc-comment-procedure-return-section.md │ │ ├── doc-comment-redundant-parameter-section.md │ │ ├── doc-comment-ref-link.md │ │ ├── doc-comment-return-section-type.md │ │ ├── doc-comment-type.md │ │ ├── doc-comment-use-minus.md │ │ ├── dynamic-access-method-not-found.md │ │ ├── empty-except-statement.md │ │ ├── event-heandler-boolean-param.md │ │ ├── export-method-in-command-form-module.md │ │ ├── export-procedure-missing-comment.md │ │ ├── extension-method-prefix.md │ │ ├── extension-variable-prefix.md │ │ ├── form-module-missing-pragma.md │ │ ├── form-module-pragma.md │ │ ├── form-self-reference.md │ │ ├── function-return-value-type.md │ │ ├── invocation-form-event-handler.md │ │ ├── invocation-parameter-type-intersect.md │ │ ├── lock-out-of-try.md │ │ ├── manager-module-named-self-reference.md │ │ ├── method-isinrole-role-exist.md │ │ ├── method-optional-parameter-before-required.md │ │ ├── method-param-value-type.md │ │ ├── method-too-many-params.md │ │ ├── missing-temporary-file-deletion.md │ │ ├── module-accessibility-at-client.md │ │ ├── module-attachable-event-handler-name.md │ │ ├── module-consecutive-blank-lines.md │ │ ├── module-empty-method.md │ │ ├── module-region-empty.md │ │ ├── module-self-reference.md │ │ ├── module-structure-event-regions.md │ │ ├── module-structure-form-event-regions.md │ │ ├── module-structure-init-code-in-region.md │ │ ├── module-structure-method-in-regions.md │ │ ├── module-structure-top-region.md │ │ ├── module-structure-var-in-region.md │ │ ├── module-undefined-function.md │ │ ├── module-undefined-method.md │ │ ├── module-undefined-variable.md │ │ ├── module-unused-local-variable.md │ │ ├── module-unused-method.md │ │ ├── new-color.md │ │ ├── new-font.md │ │ ├── notify-description-to-server-procedure.md │ │ ├── object-module-export-variable.md │ │ ├── optional-form-parameter-access.md │ │ ├── property-return-type.md │ │ ├── public-method-caching.md │ │ ├── query-in-loop.md │ │ ├── reading-attribute-from-database.md │ │ ├── redundant-export-method.md │ │ ├── rollback-transaction.md │ │ ├── ru │ │ │ ├── begin-transaction.md │ │ │ ├── bsl-canonical-pragma.md │ │ │ ├── bsl-nstr-string-literal-format.md │ │ │ ├── bsl-variable-name-invalid.md │ │ │ ├── change-and-validate-instead-of-around.md │ │ │ ├── code-after-async-call.md │ │ │ ├── commit-transaction.md │ │ │ ├── common-module-missing-api.md │ │ │ ├── common-module-named-self-reference.md │ │ │ ├── constructor-function-return-section.md │ │ │ ├── data-exchange-load.md │ │ │ ├── deprecated-procedure-outside-deprecated-region.md │ │ │ ├── doc-comment-collection-item-type.md │ │ │ ├── doc-comment-complex-type-with-link.md │ │ │ ├── doc-comment-description-ends-on-dot.md │ │ │ ├── doc-comment-export-function-return-section.md │ │ │ ├── doc-comment-export-procedure-description-section.md │ │ │ ├── doc-comment-field-in-description-suggestion.md │ │ │ ├── doc-comment-field-name.md │ │ │ ├── doc-comment-field-type-strict.md │ │ │ ├── doc-comment-field-type.md │ │ │ ├── doc-comment-parameter-in-description-suggestion.md │ │ │ ├── doc-comment-parameter-section.md │ │ │ ├── doc-comment-procedure-return-section.md │ │ │ ├── doc-comment-redundant-parameter-section.md │ │ │ ├── doc-comment-ref-link.md │ │ │ ├── doc-comment-return-section-type.md │ │ │ ├── doc-comment-type.md │ │ │ ├── doc-comment-use-minus.md │ │ │ ├── dynamic-access-method-not-found.md │ │ │ ├── empty-except-statement.md │ │ │ ├── event-heandler-boolean-param.md │ │ │ ├── export-method-in-command-form-module.md │ │ │ ├── export-procedure-missing-comment.md │ │ │ ├── extension-method-prefix.md │ │ │ ├── extension-variable-prefix.md │ │ │ ├── form-module-missing-pragma.md │ │ │ ├── form-module-pragma.md │ │ │ ├── form-self-reference.md │ │ │ ├── function-return-value-type.md │ │ │ ├── invocation-form-event-handler.md │ │ │ ├── invocation-parameter-type-intersect.md │ │ │ ├── lock-out-of-try.md │ │ │ ├── manager-module-named-self-reference.md │ │ │ ├── method-isinrole-role-exist.md │ │ │ ├── method-optional-parameter-before-required.md │ │ │ ├── method-param-value-type.md │ │ │ ├── method-too-many-params.md │ │ │ ├── missing-temporary-file-deletion.md │ │ │ ├── module-accessibility-at-client.md │ │ │ ├── module-attachable-event-handler-name.md │ │ │ ├── module-consecutive-blank-lines.md │ │ │ ├── module-empty-method.md │ │ │ ├── module-region-empty.md │ │ │ ├── module-self-reference.md │ │ │ ├── module-structure-event-regions.md │ │ │ ├── module-structure-form-event-regions.md │ │ │ ├── module-structure-init-code-in-region.md │ │ │ ├── module-structure-method-in-regions.md │ │ │ ├── module-structure-top-region.md │ │ │ ├── module-structure-var-in-region.md │ │ │ ├── module-undefined-function.md │ │ │ ├── module-undefined-method.md │ │ │ ├── module-undefined-variable.md │ │ │ ├── module-unused-local-variable.md │ │ │ ├── module-unused-method.md │ │ │ ├── new-color.md │ │ │ ├── new-font.md │ │ │ ├── notify-description-to-server-procedure.md │ │ │ ├── object-module-export-variable.md │ │ │ ├── optional-form-parameter-access.md │ │ │ ├── property-return-type.md │ │ │ ├── public-method-caching.md │ │ │ ├── query-in-loop.md │ │ │ ├── reading-attribute-from-database.md │ │ │ ├── redundant-export-method.md │ │ │ ├── rollback-transaction.md │ │ │ ├── server-execution-safe-mode.md │ │ │ ├── statement-type-change.md │ │ │ ├── structure-consructor-too-many-keys.md │ │ │ ├── structure-consructor-value-type.md │ │ │ ├── structure-key-modification.md │ │ │ ├── typed-value-adding-to-untyped-collection.md │ │ │ ├── unknown-form-parameter-access.md │ │ │ ├── use-goto-operator.md │ │ │ ├── use-non-recommended-method.md │ │ │ ├── using-form-data-to-value.md │ │ │ ├── using-isinrole.md │ │ │ └── variable-value-type.md │ │ ├── server-execution-safe-mode.md │ │ ├── statement-type-change.md │ │ ├── structure-consructor-too-many-keys.md │ │ ├── structure-consructor-value-type.md │ │ ├── structure-key-modification.md │ │ ├── typed-value-adding-to-untyped-collection.md │ │ ├── unknown-form-parameter-access.md │ │ ├── use-goto-operator.md │ │ ├── use-non-recommended-method.md │ │ ├── using-form-data-to-value.md │ │ ├── using-isinrole.md │ │ └── variable-value-type.md │ ├── plugin.properties │ ├── plugin.xml │ ├── plugin_ru.properties │ ├── pom.xml │ ├── src │ │ └── com │ │ │ └── e1c │ │ │ └── v8codestyle │ │ │ ├── bsl │ │ │ ├── IAsyncInvocationProvider.java │ │ │ ├── IModuleStructureProvider.java │ │ │ ├── ModuleStructure.java │ │ │ ├── ModuleStructureSection.java │ │ │ ├── check │ │ │ │ ├── AbstractModuleStructureCheck.java │ │ │ │ ├── AbstractTransactionCheck.java │ │ │ │ ├── AccessibilityAtClientInObjectModuleCheck.java │ │ │ │ ├── AdoptedModuleOwnerExtension.java │ │ │ │ ├── AttachableEventHandlerNameCheck.java │ │ │ │ ├── BeginTransactionCheck.java │ │ │ │ ├── CanonicalPragmaCheck.java │ │ │ │ ├── ChangeAndValidateInsteadOfAroundCheck.java │ │ │ │ ├── CodeAfterAsyncCallCheck.java │ │ │ │ ├── CommitTransactionCheck.java │ │ │ │ ├── CommonModuleMissingApiCheck.java │ │ │ │ ├── CommonModuleNamedSelfReferenceCheck.java │ │ │ │ ├── ConsecutiveEmptyLinesCheck.java │ │ │ │ ├── DeprecatedProcedureOutsideDeprecatedRegionCheck.java │ │ │ │ ├── EmptyExceptStatementCheck.java │ │ │ │ ├── EventDataExchangeLoadCheck.java │ │ │ │ ├── EventHandlerBooleanParamCheck.java │ │ │ │ ├── ExportMethodInCommandFormModuleCheck.java │ │ │ │ ├── ExportProcedureMissingCommentCheck.java │ │ │ │ ├── ExportVariableInObjectModuleCheck.java │ │ │ │ ├── ExtensionMethodPrefixCheck.java │ │ │ │ ├── ExtensionVariablePrefixCheck.java │ │ │ │ ├── FormModuleMissingPragmaCheck.java │ │ │ │ ├── FormModulePragmaCheck.java │ │ │ │ ├── FormSelfReferenceOutdatedCheck.java │ │ │ │ ├── InvocationFormEventHandlerCheck.java │ │ │ │ ├── IsInRoleCheck.java │ │ │ │ ├── IsInRoleMethodRoleExistCheck.java │ │ │ │ ├── LockOutOfTryCheck.java │ │ │ │ ├── ManagerModuleNamedSelfReferenceCheck.java │ │ │ │ ├── Messages.java │ │ │ │ ├── MethodOptionalParameterBeforeRequiredCheck.java │ │ │ │ ├── MethodTooManyPramsCheck.java │ │ │ │ ├── MissingTemporaryFileDeletionCheck.java │ │ │ │ ├── ModuleEmptyMethodCheck.java │ │ │ │ ├── ModuleStructureEventFormRegionsCheck.java │ │ │ │ ├── ModuleStructureEventRegionsCheck.java │ │ │ │ ├── ModuleStructureInitCodeInRegionCheck.java │ │ │ │ ├── ModuleStructureMethodInRegionCheck.java │ │ │ │ ├── ModuleStructureTopRegionCheck.java │ │ │ │ ├── ModuleStructureVariablesInRegionCheck.java │ │ │ │ ├── ModuleTypeFilter.java │ │ │ │ ├── ModuleUnusedLocalVariableCheck.java │ │ │ │ ├── ModuleUnusedMethodCheck.java │ │ │ │ ├── NewColorCheck.java │ │ │ │ ├── NewFontCheck.java │ │ │ │ ├── NotifyDescriptionToServerProcedureCheck.java │ │ │ │ ├── NstrStringLiteralFormatCheck.java │ │ │ │ ├── OptionalFormParameterAccessCheck.java │ │ │ │ ├── PublicMethodCachingCheck.java │ │ │ │ ├── QueryInLoopCheck.java │ │ │ │ ├── ReadingAttributesFromDataBaseCheck.java │ │ │ │ ├── RedundantExportMethodCheck.java │ │ │ │ ├── RegionEmptyCheck.java │ │ │ │ ├── RollbackTransactionCheck.java │ │ │ │ ├── SelfReferenceCheck.java │ │ │ │ ├── ServerExecutionSafeModeCheck.java │ │ │ │ ├── SkipAdoptedInExtensionModuleOwnerExtension.java │ │ │ │ ├── StructureCtorTooManyKeysCheck.java │ │ │ │ ├── UndefinedFunctionCheck.java │ │ │ │ ├── UndefinedMethodCheck.java │ │ │ │ ├── UndefinedVariableCheck.java │ │ │ │ ├── UnknownFormParameterAccessCheck.java │ │ │ │ ├── UseGotoOperatorCheck.java │ │ │ │ ├── UseNonRecommendedMethodCheck.java │ │ │ │ ├── UsingFormDataToValueCheck.java │ │ │ │ ├── VariableNameInvalidCheck.java │ │ │ │ ├── messages.properties │ │ │ │ └── messages_ru.properties │ │ │ ├── comment │ │ │ │ └── check │ │ │ │ │ ├── AbstractDocCommentTypeCheck.java │ │ │ │ │ ├── CollectionTypeDefinitionCheck.java │ │ │ │ │ ├── DocCommentUseMinusCheck.java │ │ │ │ │ ├── ExportFunctionReturnSectionCheck.java │ │ │ │ │ ├── ExportProcedureCommentDescriptionCheck.java │ │ │ │ │ ├── FieldDefinitionNameCheck.java │ │ │ │ │ ├── FieldDefinitionTypeCheck.java │ │ │ │ │ ├── FieldDefinitionTypeWithLinkRefCheck.java │ │ │ │ │ ├── FunctionReturnSectionCheck.java │ │ │ │ │ ├── Messages.java │ │ │ │ │ ├── MultilineDescriptionEndsOnDotCheck.java │ │ │ │ │ ├── MultilineDescriptionFieldSuggestionCheck.java │ │ │ │ │ ├── MultilineDescriptionParameterSuggestionCheck.java │ │ │ │ │ ├── ParametersSectionCheck.java │ │ │ │ │ ├── ProcedureReturnSectionCheck.java │ │ │ │ │ ├── RedundantParametersSectionCheck.java │ │ │ │ │ ├── RefLinkPartCheck.java │ │ │ │ │ ├── TypeDefinitionCheck.java │ │ │ │ │ ├── messages.properties │ │ │ │ │ └── messages_ru.properties │ │ │ ├── qfix │ │ │ │ ├── ConsecutiveEmptyLinesFix.java │ │ │ │ ├── Messages.java │ │ │ │ ├── RemoveExportFix.java │ │ │ │ ├── messages.properties │ │ │ │ └── messages_ru.properties │ │ │ └── strict │ │ │ │ ├── StrictTypeUtil.java │ │ │ │ ├── check │ │ │ │ ├── AbstractDynamicFeatureAccessTypeCheck.java │ │ │ │ ├── AbstractTypeCheck.java │ │ │ │ ├── DocCommentFieldTypeCheck.java │ │ │ │ ├── DynamicFeatureAccessMethodNotFoundCheck.java │ │ │ │ ├── DynamicFeatureAccessTypeCheck.java │ │ │ │ ├── FunctionCtorReturnSectionCheck.java │ │ │ │ ├── FunctionReturnTypeCheck.java │ │ │ │ ├── InternalTypeNameRegistry.java │ │ │ │ ├── InvocationParamIntersectionCheck.java │ │ │ │ ├── Messages.java │ │ │ │ ├── MethodParamTypeCheck.java │ │ │ │ ├── SimpleStatementTypeCheck.java │ │ │ │ ├── StrictTypeAnnotationCheckExtension.java │ │ │ │ ├── StructureCtorValueTypeCheck.java │ │ │ │ ├── StructureKeyModificationCheck.java │ │ │ │ ├── TypedValueAddingToUntypedCollectionCheck.java │ │ │ │ ├── VariableTypeCheck.java │ │ │ │ ├── messages.properties │ │ │ │ └── messages_ru.properties │ │ │ │ └── fix │ │ │ │ ├── Messages.java │ │ │ │ ├── RemoveStrictTypesAnnotationFix.java │ │ │ │ ├── messages.properties │ │ │ │ └── messages_ru.properties │ │ │ └── internal │ │ │ └── bsl │ │ │ ├── AsyncInvocationProvider.java │ │ │ ├── BslPlugin.java │ │ │ ├── ExecutableExtensionFactory.java │ │ │ ├── ExternalDependenciesModule.java │ │ │ ├── Messages.java │ │ │ ├── ModuleStructureProjectOptionProvider.java │ │ │ ├── ModuleStructureProvider.java │ │ │ ├── ModuleStructureProviderPreferenceInitializer.java │ │ │ ├── MultiCheckFixRegistrator.java │ │ │ ├── ServiceModule.java │ │ │ ├── StrictTypesProjectOptionProvider.java │ │ │ ├── messages.properties │ │ │ └── messages_ru.properties │ └── templates │ │ ├── en │ │ ├── bot_module.bsl │ │ ├── command_module.bsl │ │ ├── common_module.bsl │ │ ├── external_conn_module.bsl │ │ ├── form_module.bsl │ │ ├── http_service_module.bsl │ │ ├── integration_service_module.bsl │ │ ├── managed_app_module.bsl │ │ ├── manager_module.bsl │ │ ├── object_module.bsl │ │ ├── ordinary_app_module.bsl │ │ ├── recordset_module.bsl │ │ ├── session_module.bsl │ │ ├── value_manager_module.bsl │ │ └── web_service_module.bsl │ │ └── ru │ │ ├── bot_module.bsl │ │ ├── command_module.bsl │ │ ├── common_module.bsl │ │ ├── external_conn_module.bsl │ │ ├── form_module.bsl │ │ ├── http_service_module.bsl │ │ ├── integration_service_module.bsl │ │ ├── managed_app_module.bsl │ │ ├── manager_module.bsl │ │ ├── object_module.bsl │ │ ├── ordinary_app_module.bsl │ │ ├── recordset_module.bsl │ │ ├── session_module.bsl │ │ ├── value_manager_module.bsl │ │ └── web_service_module.bsl ├── com.e1c.v8codestyle.form │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── check.descriptions │ │ └── .gitignore │ ├── markdown │ │ ├── data-composition-conditional-appearance-use.md │ │ ├── form-commands-single-action-handler.md │ │ ├── form-dynamic-list-item-title.md │ │ ├── form-item-visible-settings-by-roles.md │ │ ├── form-items-single-event-handler.md │ │ ├── form-list-field-ref-not-added.md │ │ ├── form-list-ref-use-always-flag-disabled.md │ │ ├── form-list-ref-user-visibility-enabled.md │ │ ├── input-field-list-choice-mode.md │ │ └── ru │ │ │ ├── data-composition-conditional-appearance-use.md │ │ │ ├── form-commands-single-action-handler.md │ │ │ ├── form-dynamic-list-item-title.md │ │ │ ├── form-item-visible-settings-by-roles.md │ │ │ ├── form-items-single-event-handler.md │ │ │ ├── form-list-field-ref-not-added.md │ │ │ ├── form-list-ref-use-always-flag-disabled.md │ │ │ ├── form-list-ref-user-visibility-enabled.md │ │ │ └── input-field-list-choice-mode.md │ ├── plugin.properties │ ├── plugin.xml │ ├── plugin_ru.properties │ ├── pom.xml │ └── src │ │ └── com │ │ └── e1c │ │ └── v8codestyle │ │ ├── form │ │ ├── check │ │ │ ├── CommandHandlerChangeExtension.java │ │ │ ├── DataCompositionConditionalAppearanceUseCheck.java │ │ │ ├── DynamicListItemTitleCheck.java │ │ │ ├── EventHandlerChangeExtension.java │ │ │ ├── FormCommandsSingleEventHandlerCheck.java │ │ │ ├── FormItemVisibleSettingsByRolesCheck.java │ │ │ ├── FormItemsSingleEventHandlerCheck.java │ │ │ ├── FormListFieldRefNotAddedCheck.java │ │ │ ├── FormListRefUseAlwaysFlagDisabledCheck.java │ │ │ ├── FormListRefUserVisibilityEnabledCheck.java │ │ │ ├── InputFieldListChoiceMode.java │ │ │ ├── Messages.java │ │ │ ├── SkipBaseFormExtension.java │ │ │ ├── messages.properties │ │ │ └── messages_ru.properties │ │ └── fix │ │ │ ├── DynamicListFieldTitleGenerateFix.java │ │ │ ├── DynamicListItemTitleGenerateFix.java │ │ │ ├── Messages.java │ │ │ ├── messages.properties │ │ │ └── messages_ru.properties │ │ └── internal │ │ └── form │ │ ├── CorePlugin.java │ │ ├── ExecutableExtensionFactory.java │ │ └── ExternalDependenciesModule.java ├── com.e1c.v8codestyle.md.ui │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ ├── plugin_ru.properties │ ├── pom.xml │ └── src │ │ └── com │ │ └── e1c │ │ └── v8codestyle │ │ ├── internal │ │ └── md │ │ │ └── ui │ │ │ ├── ExecutableExtensionFactory.java │ │ │ ├── ExternalDependenciesModule.java │ │ │ └── UiPlugin.java │ │ └── md │ │ └── ui │ │ ├── CommonModuleTypeDtNewWizardPage.java │ │ ├── Messages.java │ │ ├── messages.properties │ │ └── messages_ru.properties ├── com.e1c.v8codestyle.md │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── check.descriptions │ │ └── .gitignore │ ├── markdown │ │ ├── common-module-name-cached.md │ │ ├── common-module-name-client-cached.md │ │ ├── common-module-name-client-server.md │ │ ├── common-module-name-client.md │ │ ├── common-module-name-full-access.md │ │ ├── common-module-name-global-client.md │ │ ├── common-module-name-global.md │ │ ├── common-module-name-server-call-cached.md │ │ ├── common-module-name-server-call.md │ │ ├── common-module-type.md │ │ ├── configuration-data-lock-mode.md │ │ ├── db-object-anyref-type.md │ │ ├── db-object-max-number-length.md │ │ ├── db-object-ref-non-ref-type.md │ │ ├── document-post-in-privileged-mode.md │ │ ├── extension-md-object-prefix.md │ │ ├── functional-option-privileged-get-mode.md │ │ ├── md-list-object-presentation.md │ │ ├── md-object-attribute-comment-incorrect-type.md │ │ ├── md-object-attribute-comment-not-exist.md │ │ ├── md-standard-attribute-synonym-empty.md │ │ ├── mdo-name-length.md │ │ ├── mdo-ru-name-unallowed-letter.md │ │ ├── mdo-scheduled-job-description.md │ │ ├── register-resource-precision.md │ │ ├── ru │ │ │ ├── common-module-name-cached.md │ │ │ ├── common-module-name-client-cached.md │ │ │ ├── common-module-name-client-server.md │ │ │ ├── common-module-name-client.md │ │ │ ├── common-module-name-full-access.md │ │ │ ├── common-module-name-global-client.md │ │ │ ├── common-module-name-global.md │ │ │ ├── common-module-name-server-call-cached.md │ │ │ ├── common-module-name-server-call.md │ │ │ ├── common-module-type.md │ │ │ ├── configuration-data-lock-mode.md │ │ │ ├── db-object-anyref-type.md │ │ │ ├── db-object-max-number-length.md │ │ │ ├── db-object-ref-non-ref-type.md │ │ │ ├── document-post-in-privileged-mode.md │ │ │ ├── extension-md-object-prefix.md │ │ │ ├── functional-option-privileged-get-mode.md │ │ │ ├── md-list-object-presentation.md │ │ │ ├── md-object-attribute-comment-incorrect-type.md │ │ │ ├── md-object-attribute-comment-not-exist.md │ │ │ ├── md-standard-attribute-synonym-empty.md │ │ │ ├── mdo-name-length.md │ │ │ ├── mdo-ru-name-unallowed-letter.md │ │ │ ├── mdo-scheduled-job-description.md │ │ │ ├── register-resource-precision.md │ │ │ ├── scheduled-job-periodicity-too-short.md │ │ │ ├── subsystem-synonym-too-long.md │ │ │ └── unsafe-password-ib-storage.md │ │ ├── scheduled-job-periodicity-too-short.md │ │ ├── subsystem-synonym-too-long.md │ │ └── unsafe-password-ib-storage.md │ ├── plugin.properties │ ├── plugin.xml │ ├── plugin_ru.properties │ ├── pom.xml │ └── src │ │ └── com │ │ └── e1c │ │ └── v8codestyle │ │ ├── internal │ │ └── md │ │ │ ├── CorePlugin.java │ │ │ ├── ExecutableExtensionFactory.java │ │ │ └── ExternalDependenciesModule.java │ │ └── md │ │ ├── CommonModuleTypes.java │ │ ├── Messages.java │ │ ├── check │ │ ├── DbObjectAnyRefTypeCheck.java │ │ ├── DbObjectMaxNumberLengthCheck.java │ │ ├── DbObjectRefNonRefTypesCheck.java │ │ ├── ExtensionMdObjectNamePrefixCheck.java │ │ ├── MdListObjectPresentationCheck.java │ │ ├── MdObjectAttributeCommentCheck.java │ │ ├── MdObjectAttributeCommentNotExistCheck.java │ │ ├── MdObjectFromExtensionProjectExtension.java │ │ ├── MdObjectNameLength.java │ │ ├── MdObjectNameUnallowedLetterCheck.java │ │ ├── MdObjectNameWithoutSuffix.java │ │ ├── MdStandardAttributeSynonymEmpty.java │ │ ├── Messages.java │ │ ├── SkipAdoptedInExtensionMdObjectExtension.java │ │ ├── UnsafePasswordStorageCheck.java │ │ ├── messages.properties │ │ └── messages_ru.properties │ │ ├── commonmodule │ │ └── check │ │ │ ├── CommonModuleNameCachedCheck.java │ │ │ ├── CommonModuleNameClient.java │ │ │ ├── CommonModuleNameClientCachedCheck.java │ │ │ ├── CommonModuleNameClientServer.java │ │ │ ├── CommonModuleNameGlobal.java │ │ │ ├── CommonModuleNameGlobalClientCheck.java │ │ │ ├── CommonModuleNamePrivilegedCheck.java │ │ │ ├── CommonModuleNameServerCallCachedCheck.java │ │ │ ├── CommonModuleNameServerCallCheck.java │ │ │ ├── CommonModuleType.java │ │ │ ├── Messages.java │ │ │ ├── messages.properties │ │ │ └── messages_ru.properties │ │ ├── configuration │ │ └── check │ │ │ ├── ConfigurationDataLock.java │ │ │ ├── Messages.java │ │ │ ├── messages.properties │ │ │ └── messages_ru.properties │ │ ├── document │ │ └── check │ │ │ ├── DocumentPostInPrivilegedModeCheck.java │ │ │ ├── Messages.java │ │ │ ├── messages.properties │ │ │ └── messages_ru.properties │ │ ├── functionoption │ │ └── check │ │ │ ├── FunctionalOptionPrivilegedGetModeCheck.java │ │ │ ├── Messages.java │ │ │ ├── messages.properties │ │ │ └── messages_ru.properties │ │ ├── messages.properties │ │ ├── messages_ru.properties │ │ ├── register │ │ └── check │ │ │ ├── Messages.java │ │ │ ├── RegisterResourcePrecisionCheck.java │ │ │ ├── messages.properties │ │ │ └── messages_ru.properties │ │ ├── scheduledjob │ │ └── check │ │ │ ├── MdScheduledJobDescriptionCheck.java │ │ │ ├── MdScheduledJobPeriodicityCheck.java │ │ │ ├── Messages.java │ │ │ ├── messages.properties │ │ │ └── messages_ru.properties │ │ └── subsystem │ │ └── check │ │ ├── Messages.java │ │ ├── SubsystemSynonymTooLongCheck.java │ │ ├── messages.properties │ │ └── messages_ru.properties ├── com.e1c.v8codestyle.ql │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── check.descriptions │ │ └── .gitignore │ ├── markdown │ │ ├── ql-camel-case-string-literal.md │ │ ├── ql-cast-to-max-number.md │ │ ├── ql-constants-in-binary-operation.md │ │ ├── ql-join-to-sub-query.md │ │ ├── ql-like-expression-with-field.md │ │ ├── ql-temp-table-index.md │ │ ├── ql-using-for-update.md │ │ ├── ql-virtual-table-filters.md │ │ └── ru │ │ │ ├── ql-camel-case-string-literal.md │ │ │ ├── ql-cast-to-max-number.md │ │ │ ├── ql-constants-in-binary-operation.md │ │ │ ├── ql-join-to-sub-query.md │ │ │ ├── ql-like-expression-with-field.md │ │ │ ├── ql-temp-table-index.md │ │ │ ├── ql-using-for-update.md │ │ │ └── ql-virtual-table-filters.md │ ├── plugin.properties │ ├── plugin.xml │ ├── plugin_ru.properties │ ├── pom.xml │ └── src │ │ └── com │ │ └── e1c │ │ └── v8codestyle │ │ ├── internal │ │ └── ql │ │ │ ├── CorePlugin.java │ │ │ ├── ExecutableExtensionFactory.java │ │ │ └── ExternalDependenciesModule.java │ │ └── ql │ │ └── check │ │ ├── CamelCaseStringLiteral.java │ │ ├── CastToMaxNumber.java │ │ ├── ConstantsInBinaryOperationCheck.java │ │ ├── JoinToSubQuery.java │ │ ├── LikeExpressionWithFieldCheck.java │ │ ├── Messages.java │ │ ├── TempTableHasIndex.java │ │ ├── UsingForUpdateCheck.java │ │ ├── VirtualTableFiltersCheck.java │ │ ├── messages.properties │ │ └── messages_ru.properties ├── com.e1c.v8codestyle.right │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── check.descriptions │ │ └── .gitignore │ ├── markdown │ │ ├── right-active-users.md │ │ ├── right-administration.md │ │ ├── right-all-functions-mode.md │ │ ├── right-configuration-extensions-administration.md │ │ ├── right-data-administration.md │ │ ├── right-delete.md │ │ ├── right-exclusive-mode.md │ │ ├── right-interactive-clear-deletion-mark-predefined-data.md │ │ ├── right-interactive-delete-marked-predefined-data.md │ │ ├── right-interactive-delete-predefined-data.md │ │ ├── right-interactive-delete.md │ │ ├── right-interactive-open-external-data-processors.md │ │ ├── right-interactive-open-external-reports.md │ │ ├── right-interactive-set-deletion-mark-predefined-data.md │ │ ├── right-output-to-printer-file-clipboard.md │ │ ├── right-save-user-data.md │ │ ├── right-start-automation.md │ │ ├── right-start-external-connection.md │ │ ├── right-start-thick-client.md │ │ ├── right-start-thin-client.md │ │ ├── right-start-web-client.md │ │ ├── right-update-database-configuration.md │ │ ├── right-view-event-log.md │ │ ├── role-right-has-rls.md │ │ └── ru │ │ │ ├── right-active-users.md │ │ │ ├── right-administration.md │ │ │ ├── right-all-functions-mode.md │ │ │ ├── right-configuration-extensions-administration.md │ │ │ ├── right-data-administration.md │ │ │ ├── right-delete.md │ │ │ ├── right-exclusive-mode.md │ │ │ ├── right-interactive-clear-deletion-mark-predefined-data.md │ │ │ ├── right-interactive-delete-marked-predefined-data.md │ │ │ ├── right-interactive-delete-predefined-data.md │ │ │ ├── right-interactive-delete.md │ │ │ ├── right-interactive-open-external-data-processors.md │ │ │ ├── right-interactive-open-external-reports.md │ │ │ ├── right-interactive-set-deletion-mark-predefined-data.md │ │ │ ├── right-output-to-printer-file-clipboard.md │ │ │ ├── right-save-user-data.md │ │ │ ├── right-start-automation.md │ │ │ ├── right-start-external-connection.md │ │ │ ├── right-start-thick-client.md │ │ │ ├── right-start-thin-client.md │ │ │ ├── right-start-web-client.md │ │ │ ├── right-update-database-configuration.md │ │ │ ├── right-view-event-log.md │ │ │ └── role-right-has-rls.md │ ├── plugin.properties │ ├── plugin.xml │ ├── plugin_ru.properties │ ├── pom.xml │ └── src │ │ └── com │ │ └── e1c │ │ └── v8codestyle │ │ ├── internal │ │ └── right │ │ │ ├── CorePlugin.java │ │ │ ├── ExecutableExtensionFactory.java │ │ │ └── ExternalDependenciesModule.java │ │ └── right │ │ └── check │ │ ├── ExcludeRoleByNameListExtension.java │ │ ├── ExcludeRoleByPatternExtension.java │ │ ├── Messages.java │ │ ├── RightActiveUsers.java │ │ ├── RightAdministration.java │ │ ├── RightAllFunctionsMode.java │ │ ├── RightConfigurationExtensionsAdministration.java │ │ ├── RightDataAdministration.java │ │ ├── RightDelete.java │ │ ├── RightExclusiveMode.java │ │ ├── RightInteractiveClearDeletionMarkPredefinedData.java │ │ ├── RightInteractiveDelete.java │ │ ├── RightInteractiveDeleteMarkedPredefinedData.java │ │ ├── RightInteractiveDeletePredefinedData.java │ │ ├── RightInteractiveOpenExternalDataProcessors.java │ │ ├── RightInteractiveOpenExternalReports.java │ │ ├── RightInteractiveSetDeletionMarkPredefinedData.java │ │ ├── RightOutputToPrinterFileClipboard.java │ │ ├── RightSaveUserData.java │ │ ├── RightStartAutomation.java │ │ ├── RightStartExternalConnection.java │ │ ├── RightStartThickClient.java │ │ ├── RightStartThinClient.java │ │ ├── RightStartWebClient.java │ │ ├── RightUpdateDatabaseConfiguration.java │ │ ├── RightViewEventLog.java │ │ ├── RoleNameChangeExtension.java │ │ ├── RoleRightHasRls.java │ │ ├── RoleRightSetCheck.java │ │ ├── messages.properties │ │ └── messages_ru.properties ├── com.e1c.v8codestyle.ui │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ ├── plugin_ru.properties │ ├── pom.xml │ └── src │ │ └── com │ │ └── e1c │ │ └── v8codestyle │ │ └── internal │ │ └── ui │ │ ├── ExecutableExtensionFactory.java │ │ ├── ExternalDependenciesModule.java │ │ ├── Messages.java │ │ ├── ProjectOptionsDtNewWizardPage.java │ │ ├── UiPlugin.java │ │ ├── messages.properties │ │ ├── messages_ru.properties │ │ └── properties │ │ └── ProjectOptionsPropertyPage.java ├── com.e1c.v8codestyle │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.ini │ ├── build.properties │ ├── logo.png │ ├── logo@2x.png │ ├── plugin.launch │ ├── plugin.properties │ ├── plugin.xml │ ├── plugin_ru.properties │ ├── pom.xml │ ├── schema │ │ └── projectOptions.exsd │ └── src │ │ └── com │ │ └── e1c │ │ └── v8codestyle │ │ ├── IProjectOptionManager.java │ │ ├── IProjectOptionProvider.java │ │ ├── ProjectOption.java │ │ ├── check │ │ ├── CheckUtils.java │ │ ├── CommonCheckRegistry.java │ │ ├── CommonSenseCheckExtension.java │ │ ├── StandardCheckExtension.java │ │ └── StandardCheckRegistry.java │ │ └── internal │ │ ├── CheckPreferenceInitializer.java │ │ ├── CommonChecksProjectOptionProvider.java │ │ ├── CorePlugin.java │ │ ├── ExecutableExtensionFactory.java │ │ ├── ExternalDependenciesModule.java │ │ ├── Messages.java │ │ ├── ProjectOptionManager.java │ │ ├── ServiceModule.java │ │ ├── StandardChecksProjectOptionProvider.java │ │ ├── messages.properties │ │ └── messages_ru.properties └── pom.xml ├── checkstyle.xml ├── docs ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.jdt.groovy.core.prefs ├── META-INF │ └── MANIFEST.MF ├── README.md ├── build.properties ├── checks │ ├── .gitignore │ ├── acc_index.md │ ├── bsl.md │ ├── check_index.md │ ├── checks_error_codes.txt │ ├── checks_index.txt │ ├── code_typification.md │ ├── edt.md │ ├── form.md │ ├── md.md │ ├── ql.md │ ├── readme.md │ └── right.md ├── contributing │ ├── Check_Convention.md │ ├── EDT-code-style-cleanup.xml │ ├── EDT-code-style-fomatter.xml │ ├── check_description.md │ ├── check_example.md │ ├── check_workflow.md │ ├── code_style.md │ ├── commits.md │ ├── documentation.md │ ├── environment.md │ ├── issue.md │ ├── licensing.md │ ├── project_language.md │ ├── pull_request.md │ ├── readme.md │ ├── testing.md │ └── versioning.md ├── html │ └── .gitignore ├── plugin.properties ├── plugin.xml ├── plugin_ru.properties ├── pom.xml ├── src │ ├── .gitkeep │ └── CheckListGenerator.groovy ├── toc.xml └── tools │ ├── autosort.md │ ├── bsl-doc-comment-view.md │ ├── common-module-types.md │ ├── module-structure.md │ └── readme.md ├── features ├── com.e1c.v8codestyle.feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── SourceTemplateFeature │ │ ├── build.properties │ │ └── feature.properties │ ├── build.properties │ ├── feature.properties │ ├── feature.xml │ ├── feature_ru.properties │ └── pom.xml ├── com.e1c.v8codestyle.sdk.feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── feature.properties │ ├── feature.xml │ └── pom.xml └── pom.xml ├── java.header ├── pom.xml ├── repositories ├── com.e1c.v8codestyle.repository.sdk │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── category.xml │ └── pom.xml ├── com.e1c.v8codestyle.repository │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── category.xml │ └── pom.xml └── pom.xml ├── targets ├── .project ├── .settings │ └── org.eclipse.core.resources.prefs ├── default │ ├── default.target │ └── pom.xml ├── develop │ └── develop.target └── pom.xml └── tests ├── com.e1c.v8codestyle.autosort.itests ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── fragment.properties ├── pom.xml ├── src │ └── com │ │ └── e1c │ │ └── v8codestyle │ │ └── autosort │ │ └── itests │ │ ├── ExternalDependenciesModule.java │ │ ├── SortCommandTest.java │ │ ├── SortServiceTest.java │ │ └── SortSubsystemsTest.java └── workspace │ ├── Sort │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonModules │ │ ├── АМ2_4Модуль │ │ │ ├── Module.bsl │ │ │ └── АМ2_4Модуль.mdo │ │ ├── АМ_Модуль │ │ │ ├── Module.bsl │ │ │ └── АМ_Модуль.mdo │ │ ├── АМодуль │ │ │ ├── Module.bsl │ │ │ └── АМодуль.mdo │ │ ├── БМодуль │ │ │ ├── Module.bsl │ │ │ └── БМодуль.mdo │ │ ├── ГМодуль │ │ │ ├── Module.bsl │ │ │ └── ГМодуль.mdo │ │ └── ОбщийМодуль │ │ │ ├── Module.bsl │ │ │ └── ОбщийМодуль.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ └── SubsystemsAutoSort │ ├── .project │ ├── .settings │ ├── com.e1c.v8codestyle.autosort.prefs │ ├── com.e1c.v8codestyle.prefs │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ └── PROJECT.PMF │ └── src │ ├── Configuration │ ├── CommandInterface.cmi │ ├── Configuration.mdo │ └── MainSectionCommandInterface.cmi │ └── Subsystems │ └── Subsystem │ ├── CommandInterface.cmi │ ├── Subsystem.mdo │ └── Subsystems │ ├── Subsystem1 │ ├── CommandInterface.cmi │ └── Subsystem1.mdo │ └── Subsystem2 │ ├── CommandInterface.cmi │ └── Subsystem2.mdo ├── com.e1c.v8codestyle.bsl.itests ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── fragment.properties ├── pom.xml ├── resources │ ├── async-call-back-descr.bsl │ ├── async-call-promise.bsl │ ├── async-call-promise2.bsl │ ├── async-call-promise3.bsl │ ├── async-call-promise4.bsl │ ├── async-call-spread-sh-doc.bsl │ ├── bsl-canonical-pragma.bsl │ ├── bsl-variable-name-invalid.bsl │ ├── change-and-validate-instead-of-around.bsl │ ├── code-after-async-call-existence.bsl │ ├── commit-transaction-must-be-in-try-catch.bsl │ ├── common-module-missing-api.bsl │ ├── deprecated-method-compliant.bsl │ ├── deprecated-method-compliant2.bsl │ ├── deprecated-method-nested-region-compliant.bsl │ ├── deprecated-method-non-compliant.bsl │ ├── deprecated-method-non-export.bsl │ ├── doc-comment-collection-item-type.bsl │ ├── doc-comment-complex-type-with-link.bsl │ ├── doc-comment-description-ends-on-dot.bsl │ ├── doc-comment-export-function-no-description-section.bsl │ ├── doc-comment-export-function-return-section.bsl │ ├── doc-comment-export-function-with-description-section.bsl │ ├── doc-comment-field-in-description-suggestion.bsl │ ├── doc-comment-field-name-ununique.bsl │ ├── doc-comment-field-name.bsl │ ├── doc-comment-field-type.bsl │ ├── doc-comment-parameter-in-description-suggestion.bsl │ ├── doc-comment-parameter-section.bsl │ ├── doc-comment-procedure-return-section.bsl │ ├── doc-comment-redundant-parameter-section.bsl │ ├── doc-comment-ref-link.bsl │ ├── doc-comment-return-section-type.bsl │ ├── doc-comment-type.bsl │ ├── doc-comment-use-minus.bsl │ ├── empty-except-statement.bsl │ ├── empty-lines.bsl │ ├── export-procedure-no-comment.bsl │ ├── export-procedure-with-comment.bsl │ ├── form-module-missing-pragma.bsl │ ├── form-module-pragma.bsl │ ├── isinrole-method.bsl │ ├── lock-out-of-try.bsl │ ├── lock-out-of-try2.bsl │ ├── method-optional-parameter-before-required.bsl │ ├── method-too-many-params.bsl │ ├── module-attachable-event-handler-name.bsl │ ├── module-empty-method.bsl │ ├── module-structure-region-is-duplicated.bsl │ ├── module-structure-region-is-not-on-top.bsl │ ├── module-structure-region-is-wrong-order.bsl │ ├── module-structure-sub-region-after-method.bsl │ ├── module-structure-sub-region.bsl │ ├── module-structure-top-region-compliant.bsl │ ├── module-structure-top-region-noncompliant.bsl │ ├── module-structure.bsl │ ├── module-unused-local-variable.bsl │ ├── module-unused-method.bsl │ ├── new-color.bsl │ ├── new-color2.bsl │ ├── new-color3.bsl │ ├── new-color4.bsl │ ├── new-font.bsl │ ├── new-font2.bsl │ ├── new-font3.bsl │ ├── no-begin-transaction-for-commit-transaction.bsl │ ├── no-begin-transaction-for-rollback-transaction.bsl │ ├── no-commit-transaction-for-begin-transaction.bsl │ ├── no-rollback-transaction-for-begin-transaction.bsl │ ├── non-public-export-procedure-no-comment.bsl │ ├── not-found-try-after-begin.bsl │ ├── notify-description-to-server-procedure.bsl │ ├── notify-description-to-server-procedure2.bsl │ ├── nstr-format │ │ ├── compliant.bsl │ │ ├── non-compliant-1.bsl │ │ ├── non-compliant-2.bsl │ │ ├── non-compliant-3.bsl │ │ ├── non-compliant-4.bsl │ │ ├── non-compliant-5.bsl │ │ ├── non-compliant-6.bsl │ │ └── non-compliant-7.bsl │ ├── object-module-export-variable.bsl │ ├── one-empty-line.bsl │ ├── query-in-loop-infinite.bsl │ ├── query-in-loop.bsl │ ├── read-single-property-bsl-compliant.bsl │ ├── read-single-property-bsl-non-compliant.bsl │ ├── read-single-property-db-non-compliant.bsl │ ├── read-single-property-ql-compliant.bsl │ ├── read-single-property-simple-type.bsl │ ├── region-empty-after.bsl │ ├── region-empty-before.bsl │ ├── region-empty-sub-region.bsl │ ├── region-empty.bsl │ ├── region-not-empty.bsl │ ├── rollback-transaction-must-be-in-try-catch.bsl │ ├── should-be-no-executable-code-between-begin-and-try.bsl │ ├── should-be-no-executable-code-between-commit-and-exception.bsl │ ├── should-be-no-executable-code-between-exception-and-rollback.bsl │ ├── strict │ │ ├── constructor-function-return-section.bsl │ │ ├── doc-comment-field-type-strict.bsl │ │ ├── dynamic-access-method-not-found.bsl │ │ ├── function-return-value-type.bsl │ │ ├── invocation-parameter-type-intersect-catalog-object.bsl │ │ ├── invocation-parameter-type-intersect-collection-item.bsl │ │ ├── invocation-parameter-type-intersect-local-doc-comment.bsl │ │ ├── invocation-parameter-type-intersect-select-param-set.bsl │ │ ├── invocation-parameter-type-intersect-with-default.bsl │ │ ├── invocation-parameter-type-intersect.bsl │ │ ├── invocation-parameter-type-valuelist-item-type.bsl │ │ ├── invocation-parameter-type-valuelist-undefined-item-type.bsl │ │ ├── method-param-value-type.bsl │ │ ├── property-return-type.bsl │ │ ├── statement-type-change-common-module.bsl │ │ ├── statement-type-change-with-doc-comment.bsl │ │ ├── statement-type-change.bsl │ │ ├── structure-consructor-value-type.bsl │ │ ├── structure-key-modification.bsl │ │ ├── typed-value-adding-to-untyped-array.bsl │ │ ├── typed-value-adding-to-untyped-value-list.bsl │ │ └── variable-value-type.bsl │ ├── structure-consructor-too-many-keys.bsl │ ├── temporary-file-deletion │ │ ├── begin-deleting-files.bsl │ │ ├── custom-deletion-method-level-0.bsl │ │ ├── custom-deletion-method-level-1.bsl │ │ ├── custom-deletion-method-level-2.bsl │ │ ├── delete-files.bsl │ │ ├── move-file.bsl │ │ └── non-compliant.bsl │ ├── use-goto-operator.bsl │ ├── use-non-recommended-method-find.bsl │ ├── use-non-recommended-methods.bsl │ └── using-form-data-to-value.bsl ├── src │ └── com │ │ └── e1c │ │ └── v8codestyle │ │ └── bsl │ │ ├── check │ │ └── itests │ │ │ ├── AbstractSingleModuleTestBase.java │ │ │ ├── AccessibilityAtClientInObjectModuleCheckTest.java │ │ │ ├── AttachableEventHandlerNameCheckTest.java │ │ │ ├── BeginTransactionCheckTest.java │ │ │ ├── CanonicalPragmaCheckTest.java │ │ │ ├── ChangeAndValidateInsteadOfAroundCheckTest.java │ │ │ ├── CheckDescriptionTest.java │ │ │ ├── CodeAfterAsyncCallCheckTest.java │ │ │ ├── CommitTransactionCheckTest.java │ │ │ ├── CommonModuleMissingApiCheckTest.java │ │ │ ├── CommonModuleNamedSelfReferenceCheckTest.java │ │ │ ├── ConsecutiveEmptyLinesCheckTest.java │ │ │ ├── DeprecatedProcedureOutsideDeprecatedRegionCheckTest.java │ │ │ ├── EmptyExceptStatementCheckTest.java │ │ │ ├── EventDataExchangeLoadCheckTest.java │ │ │ ├── EventHandlerBooleanParamCheckTest.java │ │ │ ├── ExportMethodInCommandFormModuleCheckTest.java │ │ │ ├── ExportProcedureMissingCommentCheckTest.java │ │ │ ├── ExportVariableInObjectModuleCheckTest.java │ │ │ ├── ExtensionMethodPrefixCheckTest.java │ │ │ ├── ExtensionVariablePrefixCheckTest.java │ │ │ ├── FormModuleMissingPragmaCheckTest.java │ │ │ ├── FormModulePragmaCheckTest.java │ │ │ ├── FormSelfReferenceOutdatedCheckTest.java │ │ │ ├── InvocationFormEventHandlerCheckTest.java │ │ │ ├── IsInRoleCheckTest.java │ │ │ ├── IsInRoleMethodRoleExistCheckTest.java │ │ │ ├── LockOutOfTryCheckTest.java │ │ │ ├── ManagerModuleNamedSelfReferenceCheckTest.java │ │ │ ├── MethodOptionalParameterBeforeRequiredCheckTest.java │ │ │ ├── MethodTooManyPramsCheckTest.java │ │ │ ├── MissingTemporaryFileDeletionCheckTest.java │ │ │ ├── ModuleEmptyMethodCheckTest.java │ │ │ ├── ModuleStructureEventFormRegionsCheckTest.java │ │ │ ├── ModuleStructureEventRegionsCheckTest.java │ │ │ ├── ModuleStructureInitCodeInRegionCheckTest.java │ │ │ ├── ModuleStructureMethodInRegionCheckTest.java │ │ │ ├── ModuleStructureTopRegionCheckTest.java │ │ │ ├── ModuleStructureVariablesInRegionCheckTest.java │ │ │ ├── ModuleUnusedLocalVariableCheckTest.java │ │ │ ├── ModuleUnusedMethodCheckTest.java │ │ │ ├── NewColorCheckTest.java │ │ │ ├── NewFontCheckTest.java │ │ │ ├── NotifyDescriptionToServerProcedureCheck2Test.java │ │ │ ├── NotifyDescriptionToServerProcedureCheckTest.java │ │ │ ├── NstrStringLiteralFormatCheckTest.java │ │ │ ├── OptionalFormParameterAccessCheckTest.java │ │ │ ├── PublicMethodCachingCheckTest.java │ │ │ ├── QueryInLoopCheckTest.java │ │ │ ├── ReadingAttributesFromDataBaseCheckTest.java │ │ │ ├── RedundantExportMethodCheckTest.java │ │ │ ├── RegionEmptyCheckTest.java │ │ │ ├── RollbackTransactionCheckTest.java │ │ │ ├── SelfReferenceCheckTest.java │ │ │ ├── ServerExecutionSafeModeCheckTest.java │ │ │ ├── StructureCtorTooManyKeysCheckTest.java │ │ │ ├── UnknownFormParameterAccessCheckTest.java │ │ │ ├── UseGotoOperatorCheckTest.java │ │ │ ├── UseNonRecommendedMethodsTest.java │ │ │ ├── UsingFormDataToValueCheckTest.java │ │ │ └── VariableNameInvalidCheckTest.java │ │ ├── comment │ │ └── check │ │ │ └── itests │ │ │ ├── CollectionTypeDefinitionCheckTest.java │ │ │ ├── DocCommentUseMinusCheckTest.java │ │ │ ├── ExportFunctionReturnSectionCheckTest.java │ │ │ ├── ExportProcedureCommentDescriptionCheckTest.java │ │ │ ├── FieldDefinitionNameCheckTest.java │ │ │ ├── FieldDefinitionTypeCheckTest.java │ │ │ ├── FieldDefinitionTypeWithLinkRefCheckTest.java │ │ │ ├── FunctionReturnSectionCheckTest.java │ │ │ ├── MultilineDescriptionEndsOnDotCheckTest.java │ │ │ ├── MultilineDescriptionFieldSuggestionCheckTest.java │ │ │ ├── MultilineDescriptionParameterSuggestionCheckTest.java │ │ │ ├── ParametersSectionCheckTest.java │ │ │ ├── ProcedureReturnSectionCheckTest.java │ │ │ ├── RedundantParametersSectionCheckTest.java │ │ │ ├── RefLinkPartCheckTest.java │ │ │ └── TypeDefinitionCheckTest.java │ │ ├── fix │ │ └── itests │ │ │ └── ConsecutiveEmptyLinesFixTest.java │ │ └── strict │ │ └── check │ │ └── itests │ │ ├── CommonModuleStrictTypesTest.java │ │ └── InvocationParamIntersectionCheckTest.java └── workspace │ ├── AccessibilityAtClient │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── Products │ │ │ ├── ManagerModule.bsl │ │ │ ├── ObjectModule.bsl │ │ │ └── Products.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── CachedPublicCheck │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonModules │ │ ├── CommonModule │ │ │ ├── CommonModule.mdo │ │ │ └── Module.bsl │ │ ├── CommonModuleCached │ │ │ ├── CommonModuleCached.mdo │ │ │ └── Module.bsl │ │ └── CommonModuleCachedCompliant │ │ │ ├── CommonModuleCachedCompliant.mdo │ │ │ └── Module.bsl │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── CanonicalPragmaExtension │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonModules │ │ └── CommonModule │ │ │ ├── CommonModule.mdo │ │ │ └── Module.bsl │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── CatalogModules │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── TestCatalog │ │ │ ├── ManagerModule.bsl │ │ │ ├── ObjectModule.bsl │ │ │ └── TestCatalog.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── ChangeAndValidateInsteadOfAroundExtension │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonModules │ │ └── CommonModule │ │ │ ├── CommonModule.mdo │ │ │ └── Module.bsl │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── CommonForm │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonForms │ │ └── Form │ │ │ ├── Form.form │ │ │ ├── Form.mdo │ │ │ └── Module.bsl │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── CommonModule │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonModules │ │ └── CommonModule │ │ │ ├── CommonModule.mdo │ │ │ └── Module.bsl │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── CommonModuleNamedSelfReferenceCheck │ ├── .project │ ├── .settings │ │ ├── com.e1c.v8codestyle.autosort.prefs │ │ ├── com.e1c.v8codestyle.bsl.prefs │ │ ├── com.e1c.v8codestyle.prefs │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonModules │ │ ├── MyCommonModule │ │ │ ├── Module.bsl │ │ │ └── MyCommonModule.mdo │ │ └── MyCommonModuleCached │ │ │ ├── Module.bsl │ │ │ └── MyCommonModuleCached.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── ConsecutiveEmptyLines │ ├── .project │ ├── .settings │ │ ├── Default.cset │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonModules │ │ └── CommonModule │ │ │ ├── CommonModule.mdo │ │ │ └── Module.bsl │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── EventDataExchangeLoadCheck │ ├── .project │ ├── .settings │ │ ├── com.e1c.v8codestyle.autosort.prefs │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── Products │ │ │ ├── ObjectModule.bsl │ │ │ └── Products.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── EventHandlerBooleanParam │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── Products │ │ │ ├── Forms │ │ │ └── ItemForm │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ │ ├── ManagerModule.bsl │ │ │ ├── ObjectModule.bsl │ │ │ └── Products.mdo │ │ ├── CommonModules │ │ └── Common │ │ │ ├── Common.mdo │ │ │ └── Module.bsl │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── EventSubscriptions │ │ └── ProductsOnWrite │ │ └── ProductsOnWrite.mdo │ ├── ExcessExportCheck │ ├── .project │ ├── .settings │ │ ├── Default.cset │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── Catalog │ │ │ ├── Catalog.mdo │ │ │ ├── Forms │ │ │ ├── ItemForm │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ │ └── ListForm │ │ │ │ ├── Attributes │ │ │ │ └── List │ │ │ │ │ └── ExtInfo │ │ │ │ │ └── ListSettings.dcss │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ │ └── ObjectModule.bsl │ │ ├── CommonModules │ │ ├── CallNoPublic │ │ │ ├── CallNoPublic.mdo │ │ │ └── Module.bsl │ │ ├── NoCallNoPublic │ │ │ ├── Module.bsl │ │ │ └── NoCallNoPublic.mdo │ │ ├── NoCallPublic │ │ │ ├── Module.bsl │ │ │ └── NoCallPublic.mdo │ │ ├── isEventSubscription │ │ │ ├── Module.bsl │ │ │ └── isEventSubscription.mdo │ │ └── isScheduledJob │ │ │ ├── Module.bsl │ │ │ └── isScheduledJob.mdo │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ ├── EventSubscriptions │ │ └── EventSubscription │ │ │ └── EventSubscription.mdo │ │ └── ScheduledJobs │ │ └── ScheduledJob │ │ ├── Schedule.schedule │ │ └── ScheduledJob.mdo │ ├── ExportMethodInCommandFormModuleCheck │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── Products │ │ │ ├── Commands │ │ │ ├── Command │ │ │ │ └── CommandModule.bsl │ │ │ └── TestCommand │ │ │ │ └── CommandModule.bsl │ │ │ ├── Forms │ │ │ └── ItemForm │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ │ └── Products.mdo │ │ ├── CommonCommands │ │ ├── CommonCommand │ │ │ ├── CommandModule.bsl │ │ │ └── CommonCommand.mdo │ │ └── CommonCommand1 │ │ │ ├── CommandModule.bsl │ │ │ └── CommonCommand1.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── ExtensionMethodPrefixCheck │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonModules │ │ ├── CommonModule │ │ │ ├── CommonModule.mdo │ │ │ └── Module.bsl │ │ └── CompliantCommonModule │ │ │ ├── CompliantCommonModule.mdo │ │ │ └── Module.bsl │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── ExtensionMethodPrefixCheck_Extension │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonModules │ │ ├── CommonModule │ │ │ ├── CommonModule.mdo │ │ │ └── Module.bsl │ │ └── CompliantCommonModule │ │ │ ├── CompliantCommonModule.mdo │ │ │ └── Module.bsl │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── Roles │ │ └── Ext1_DefaultRole │ │ ├── Ext1_DefaultRole.mdo │ │ └── Rights.rights │ ├── ExtensionVariablePrefixCheck │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── Catalog │ │ │ ├── Catalog.mdo │ │ │ └── Forms │ │ │ └── ItemForm │ │ │ └── Form.form │ │ ├── CommonForms │ │ └── Form │ │ │ ├── Form.form │ │ │ ├── Form.mdo │ │ │ └── Module.bsl │ │ ├── CommonModules │ │ ├── CommonModule │ │ │ ├── CommonModule.mdo │ │ │ └── Module.bsl │ │ └── CompliantCommonModule │ │ │ ├── CompliantCommonModule.mdo │ │ │ └── Module.bsl │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── ExtensionVariablePrefixCheck_Extension │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── Catalog │ │ │ ├── Catalog.mdo │ │ │ └── Forms │ │ │ └── ItemForm │ │ │ ├── BaseForm │ │ │ └── Form.form │ │ │ ├── Form.form │ │ │ └── Module.bsl │ │ ├── CommonForms │ │ └── Form │ │ │ ├── BaseForm │ │ │ └── Form.form │ │ │ ├── Form.form │ │ │ ├── Form.mdo │ │ │ └── Module.bsl │ │ ├── CommonModules │ │ ├── CommonModule │ │ │ ├── CommonModule.mdo │ │ │ └── Module.bsl │ │ └── CompliantCommonModule │ │ │ ├── CompliantCommonModule.mdo │ │ │ └── Module.bsl │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── Roles │ │ └── Ext1_DefaultRole │ │ ├── Ext1_DefaultRole.mdo │ │ └── Rights.rights │ ├── FormSelfReferenceOutdatedCheck │ ├── .project │ ├── .settings │ │ ├── com.e1c.v8codestyle.autosort.prefs │ │ ├── com.e1c.v8codestyle.bsl.prefs │ │ ├── com.e1c.v8codestyle.prefs │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonForms │ │ └── MyForm │ │ │ ├── Form.form │ │ │ ├── Module.bsl │ │ │ └── MyForm.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── InvocationFormEventHandler │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── Products │ │ │ ├── Forms │ │ │ ├── ItemForm │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ │ ├── ItemForm1 │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ │ └── ItemForm2 │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ │ └── Products.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── IsInRoleMethodRoleExist │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonModules │ │ ├── RolesCommonModule │ │ │ ├── Module.bsl │ │ │ └── RolesCommonModule.mdo │ │ └── Users │ │ │ ├── Module.bsl │ │ │ └── Users.mdo │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── Roles │ │ └── TestRole1 │ │ ├── Rights.rights │ │ └── TestRole1.mdo │ ├── ManagerModuleNamedSelfReferenceCheck │ ├── .project │ ├── .settings │ │ ├── com.e1c.v8codestyle.autosort.prefs │ │ ├── com.e1c.v8codestyle.bsl.prefs │ │ ├── com.e1c.v8codestyle.prefs │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── Catalog │ │ │ ├── Catalog.mdo │ │ │ └── ManagerModule.bsl │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── ModuleStructureEventFormRegionsCheck │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ ├── Catalog │ │ │ ├── Catalog.mdo │ │ │ └── Forms │ │ │ │ └── ItemForm │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ ├── CatalogCommand │ │ │ ├── CatalogCommand.mdo │ │ │ └── Forms │ │ │ │ └── ItemForm │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ ├── CatalogCommandInWrongMethod │ │ │ ├── CatalogCommandInWrongMethod.mdo │ │ │ └── Forms │ │ │ │ └── ItemForm │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ ├── CatalogCommandInWrongRegion │ │ │ ├── CatalogCommandInWrongRegion.mdo │ │ │ └── Forms │ │ │ │ └── ItemForm │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ ├── CatalogField │ │ │ ├── CatalogField.mdo │ │ │ └── Forms │ │ │ │ └── ItemForm │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ ├── CatalogFieldInWrongMethod │ │ │ ├── CatalogFieldInWrongMethod.mdo │ │ │ └── Forms │ │ │ │ └── ItemForm │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ ├── CatalogFieldInWrongRegion │ │ │ ├── CatalogFieldInWrongRegion.mdo │ │ │ └── Forms │ │ │ │ └── ItemForm │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ ├── CatalogInWrongMethod │ │ │ ├── CatalogInWrongMethod.mdo │ │ │ └── Forms │ │ │ │ └── ItemForm │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ ├── CatalogInWrongRegion │ │ │ ├── CatalogInWrongRegion.mdo │ │ │ └── Forms │ │ │ │ └── ItemForm │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ ├── CatalogTable │ │ │ ├── CatalogTable.mdo │ │ │ └── Forms │ │ │ │ └── ItemForm │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ ├── CatalogTableInWrongMethod │ │ │ ├── CatalogTableInWrongMethod.mdo │ │ │ └── Forms │ │ │ │ └── ItemForm │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ └── CatalogTableInWrongRegion │ │ │ ├── CatalogTableInWrongRegion.mdo │ │ │ └── Forms │ │ │ └── ItemForm │ │ │ ├── Form.form │ │ │ └── Module.bsl │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── ModuleStructureInitCodeInRegion │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ ├── Catalog │ │ │ ├── Catalog.mdo │ │ │ └── ObjectModule.bsl │ │ ├── CatalogOutRegion │ │ │ ├── CatalogOutRegion.mdo │ │ │ └── ObjectModule.bsl │ │ └── CatalogWrongRegion │ │ │ ├── CatalogWrongRegion.mdo │ │ │ └── ObjectModule.bsl │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── ModuleStructureMethodInRegionCheck │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── CatalogOutOfRegion │ │ │ ├── CatalogOutOfRegion.mdo │ │ │ ├── Forms │ │ │ └── ItemForm │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ │ └── ManagerModule.bsl │ │ ├── CommonCommands │ │ └── CommonCommand │ │ │ ├── CommandModule.bsl │ │ │ └── CommonCommand.mdo │ │ ├── CommonModules │ │ ├── CommonModulMultiLevel │ │ │ ├── CommonModulMultiLevel.mdo │ │ │ └── Module.bsl │ │ ├── CommonModuleAfterRegion │ │ │ ├── CommonModuleAfterRegion.mdo │ │ │ └── Module.bsl │ │ ├── CommonModuleExportInRegion │ │ │ ├── CommonModuleExportInRegion.mdo │ │ │ └── Module.bsl │ │ ├── CommonModuleInNonInterfaceRegion │ │ │ ├── CommonModuleInNonInterfaceRegion.mdo │ │ │ └── Module.bsl │ │ ├── CommonModuleInRegion │ │ │ ├── CommonModuleInRegion.mdo │ │ │ └── Module.bsl │ │ ├── CommonModuleMultiLevel1 │ │ │ ├── CommonModuleMultiLevel1.mdo │ │ │ └── Module.bsl │ │ └── CommonModuleNoRegion │ │ │ ├── CommonModuleNoRegion.mdo │ │ │ └── Module.bsl │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── ModuleStructureTopRegionCheck │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── Catalog │ │ │ ├── Catalog.mdo │ │ │ ├── Forms │ │ │ └── ItemForm │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ │ ├── ManagerModule.bsl │ │ │ └── ObjectModule.bsl │ │ ├── CommonModules │ │ ├── CommonModule │ │ │ ├── CommonModule.mdo │ │ │ └── Module.bsl │ │ ├── ComplientCommonModule │ │ │ ├── ComplientCommonModule.mdo │ │ │ └── Module.bsl │ │ ├── NonComplientCommonModule │ │ │ ├── Module.bsl │ │ │ └── NonComplientCommonModule.mdo │ │ ├── NonComplientCommonModule1 │ │ │ ├── Module.bsl │ │ │ └── NonComplientCommonModule1.mdo │ │ ├── NonComplientCommonModule2 │ │ │ ├── Module.bsl │ │ │ └── NonComplientCommonModule2.mdo │ │ └── NonComplientCommonModule3 │ │ │ ├── Module.bsl │ │ │ └── NonComplientCommonModule3.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── ModuleStructureVariablesInRegionCheck │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ ├── Catalog │ │ │ ├── Catalog.mdo │ │ │ ├── ManagerModule.bsl │ │ │ └── ObjectModule.bsl │ │ ├── CatalogComplient │ │ │ ├── CatalogComplient.mdo │ │ │ └── ObjectModule.bsl │ │ ├── CatalogNoRegion │ │ │ ├── CatalogNoRegion.mdo │ │ │ └── ObjectModule.bsl │ │ ├── CatalogOutOfRegion │ │ │ ├── CatalogOutOfRegion.mdo │ │ │ └── ObjectModule.bsl │ │ └── CatalogWrongRegion │ │ │ ├── CatalogWrongRegion.mdo │ │ │ └── ObjectModule.bsl │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── OptionalFormParameterAccess │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonForms │ │ └── TestForm │ │ │ ├── Form.form │ │ │ ├── Module.bsl │ │ │ └── TestForm.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── SelfReferenceCheck │ ├── .project │ ├── .settings │ │ ├── Default.cset │ │ ├── com.e1c.g5.v8.dt.formatter.bsl.prefs │ │ ├── com.e1c.v8codestyle.autosort.prefs │ │ ├── com.e1c.v8codestyle.bsl.prefs │ │ ├── com.e1c.v8codestyle.prefs │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── Products │ │ │ ├── ManagerModule.bsl │ │ │ ├── ObjectModule.bsl │ │ │ └── Products.mdo │ │ ├── CommonForms │ │ └── MyForm │ │ │ ├── Form.form │ │ │ ├── Module.bsl │ │ │ └── MyForm.mdo │ │ ├── CommonModules │ │ └── MyCommonModule │ │ │ ├── Module.bsl │ │ │ └── MyCommonModule.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── ServerExecutionSafeModeCheck │ ├── .project │ ├── .settings │ │ ├── com.e1c.v8codestyle.autosort.prefs │ │ ├── com.e1c.v8codestyle.bsl.prefs │ │ ├── com.e1c.v8codestyle.prefs │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonForms │ │ └── Form │ │ │ ├── Form.form │ │ │ ├── Form.mdo │ │ │ └── Module.bsl │ │ ├── CommonModules │ │ ├── CommonModule │ │ │ ├── CommonModule.mdo │ │ │ └── Module.bsl │ │ └── CommonModuleServerCall │ │ │ ├── CommonModuleServerCall.mdo │ │ │ └── Module.bsl │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── StructureModule │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ ├── CatalogInRegion │ │ │ ├── CatalogInRegion.mdo │ │ │ ├── ManagerModule.bsl │ │ │ └── ObjectModule.bsl │ │ ├── CatalogInRegionWrongMethod │ │ │ ├── CatalogInRegionWrongMethod.mdo │ │ │ ├── ManagerModule.bsl │ │ │ └── ObjectModule.bsl │ │ └── CatalogInWrongRegion │ │ │ ├── CatalogInWrongRegion.mdo │ │ │ ├── ManagerModule.bsl │ │ │ └── ObjectModule.bsl │ │ ├── CommonModules │ │ └── CommonModule │ │ │ ├── CommonModule.mdo │ │ │ └── Module.bsl │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── EventSubscriptions │ │ └── EventSubscription │ │ └── EventSubscription.mdo │ └── UnknownFormParameterAccess │ ├── .project │ ├── .settings │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ └── PROJECT.PMF │ └── src │ ├── CommonForms │ └── TestForm │ │ ├── Form.form │ │ ├── Module.bsl │ │ └── TestForm.mdo │ └── Configuration │ ├── CommandInterface.cmi │ ├── Configuration.mdo │ └── MainSectionCommandInterface.cmi ├── com.e1c.v8codestyle.bsl.ui.itests ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── fragment.properties ├── pom.xml ├── resources │ ├── doc-comment-format-result.bsl │ ├── doc-comment-format.bsl │ └── doc-comment-view.bsl ├── src │ └── com │ │ └── e1c │ │ └── v8codestyle │ │ └── bsl │ │ └── ui │ │ └── itests │ │ ├── BslDocCommentViewTest.java │ │ ├── ModuleStructurePreferencePageTest.java │ │ ├── ModuleStructurePropertyPageTest.java │ │ └── handlers │ │ └── FormatDocCommentModuleEditorHandlerTest.java └── workspace │ └── CommonModule │ ├── .project │ ├── .settings │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ └── PROJECT.PMF │ └── src │ ├── CommonModules │ └── CommonModule │ │ ├── CommonModule.mdo │ │ └── Module.bsl │ └── Configuration │ ├── CommandInterface.cmi │ ├── Configuration.mdo │ └── MainSectionCommandInterface.cmi ├── com.e1c.v8codestyle.form.itests ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── fragment.properties ├── pom.xml ├── src │ └── com │ │ └── e1c │ │ └── v8codestyle │ │ └── form │ │ ├── check │ │ └── itests │ │ │ ├── CheckDescriptionTest.java │ │ │ ├── DataCompositionConditionalAppearanceUseCheckTest.java │ │ │ ├── DynamicListItemTitleCheckTest.java │ │ │ ├── FormCommandsSingleEventHandlerCheckTest.java │ │ │ ├── FormItemVisibleSettingsByRolesCheckTest.java │ │ │ ├── FormItemsSingleEventHandlerCheckTest.java │ │ │ ├── FormListFieldRefNotAddedCheckTest.java │ │ │ ├── FormListRefUseAlwaysFlagDisabledCheckTest.java │ │ │ ├── FormListRefUserVisibilityEnabledCheckTest.java │ │ │ └── InputFieldListChoiceModeTest.java │ │ └── fix │ │ └── itests │ │ ├── DynamicListFieldTitleGenerateFixTest.java │ │ ├── DynamicListItemTitleGenerateFixTest.java │ │ └── FormFixTestBase.java └── workspace │ ├── DataCompositionConditionalAppearanceUse │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ ├── TestCatalog1 │ │ │ ├── Forms │ │ │ │ └── ListForm │ │ │ │ │ ├── Attributes │ │ │ │ │ └── List │ │ │ │ │ │ └── ExtInfo │ │ │ │ │ │ └── ListSettings.dcss │ │ │ │ │ └── Form.form │ │ │ └── TestCatalog1.mdo │ │ ├── TestCatalog2 │ │ │ ├── Forms │ │ │ │ └── ListForm │ │ │ │ │ ├── Attributes │ │ │ │ │ └── List │ │ │ │ │ │ └── ExtInfo │ │ │ │ │ │ └── ListSettings.dcss │ │ │ │ │ └── Form.form │ │ │ └── TestCatalog2.mdo │ │ ├── TestCatalog3 │ │ │ ├── Forms │ │ │ │ └── ItemForm │ │ │ │ │ ├── ConditionalAppearance.dcssca │ │ │ │ │ └── Form.form │ │ │ └── TestCatalog3.mdo │ │ └── TestCatalog4 │ │ │ ├── Forms │ │ │ └── ItemForm │ │ │ │ └── Form.form │ │ │ └── TestCatalog4.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── FormCommandsSingleEventHandlerCheck │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── Catalog │ │ │ ├── Catalog.mdo │ │ │ └── Forms │ │ │ ├── CompliantForm │ │ │ ├── Form.form │ │ │ └── Module.bsl │ │ │ └── NonCompliantForm │ │ │ ├── Attributes │ │ │ └── List │ │ │ │ └── ExtInfo │ │ │ │ └── ListSettings.dcss │ │ │ ├── Form.form │ │ │ └── Module.bsl │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── FormDynamicListItemTitle │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── Products │ │ │ ├── Forms │ │ │ ├── ListForm │ │ │ │ ├── Attributes │ │ │ │ │ └── List │ │ │ │ │ │ └── ExtInfo │ │ │ │ │ │ └── ListSettings.dcss │ │ │ │ └── Form.form │ │ │ ├── ListFormPackage │ │ │ │ ├── Attributes │ │ │ │ │ └── List │ │ │ │ │ │ └── ExtInfo │ │ │ │ │ │ └── ListSettings.dcss │ │ │ │ └── Form.form │ │ │ └── ListFormSelectAll │ │ │ │ ├── Attributes │ │ │ │ └── List │ │ │ │ │ └── ExtInfo │ │ │ │ │ └── ListSettings.dcss │ │ │ │ └── Form.form │ │ │ └── Products.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── FormItemVisibleSettingsByRoles │ ├── .project │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonForms │ │ ├── TestForm1 │ │ │ ├── Form.form │ │ │ └── TestForm1.mdo │ │ ├── TestForm2 │ │ │ ├── Form.form │ │ │ └── TestForm2.mdo │ │ ├── TestForm3 │ │ │ ├── Form.form │ │ │ └── TestForm3.mdo │ │ ├── TestForm4 │ │ │ ├── Form.form │ │ │ └── TestForm4.mdo │ │ └── TestForm5 │ │ │ ├── Form.form │ │ │ └── TestForm5.mdo │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── Roles │ │ ├── TestRole1 │ │ ├── Rights.rights │ │ └── TestRole1.mdo │ │ └── TestRole2 │ │ ├── Rights.rights │ │ └── TestRole2.mdo │ ├── FormItemsSingleEventHandler │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonForms │ │ ├── TestFormWithIssue │ │ │ ├── Form.form │ │ │ ├── Module.bsl │ │ │ └── TestFormWithIssue.mdo │ │ └── TestFormWithoutIssue │ │ │ ├── Form.form │ │ │ ├── Module.bsl │ │ │ └── TestFormWithoutIssue.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── FormListFieldRefNotAdded │ ├── .project │ ├── .settings │ │ ├── com.e1c.v8codestyle.autosort.prefs │ │ ├── com.e1c.v8codestyle.bsl.prefs │ │ ├── com.e1c.v8codestyle.prefs │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── TestCatalog │ │ │ ├── Forms │ │ │ └── TestListForm │ │ │ │ ├── Attributes │ │ │ │ └── List │ │ │ │ │ └── ExtInfo │ │ │ │ │ └── ListSettings.dcss │ │ │ │ └── Form.form │ │ │ └── TestCatalog.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── FormListRefUseAlwaysFlagDisabled │ ├── .project │ ├── .settings │ │ ├── com.e1c.v8codestyle.autosort.prefs │ │ ├── com.e1c.v8codestyle.bsl.prefs │ │ ├── com.e1c.v8codestyle.prefs │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── TestCatalog │ │ │ ├── Forms │ │ │ ├── TestCustomListForm │ │ │ │ ├── Attributes │ │ │ │ │ └── List │ │ │ │ │ │ └── ExtInfo │ │ │ │ │ │ └── ListSettings.dcss │ │ │ │ └── Form.form │ │ │ ├── TestCustomListFormRu │ │ │ │ ├── Attributes │ │ │ │ │ └── Список │ │ │ │ │ │ └── ExtInfo │ │ │ │ │ │ └── ListSettings.dcss │ │ │ │ └── Form.form │ │ │ ├── TestListForm │ │ │ │ ├── Attributes │ │ │ │ │ └── List │ │ │ │ │ │ └── ExtInfo │ │ │ │ │ │ └── ListSettings.dcss │ │ │ │ └── Form.form │ │ │ └── TestListFormRu │ │ │ │ ├── Attributes │ │ │ │ └── Список │ │ │ │ │ └── ExtInfo │ │ │ │ │ └── ListSettings.dcss │ │ │ │ └── Form.form │ │ │ └── TestCatalog.mdo │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── InformationRegisters │ │ └── TestInformationRegister │ │ ├── Forms │ │ └── TestListForm │ │ │ ├── Attributes │ │ │ └── List │ │ │ │ └── ExtInfo │ │ │ │ └── ListSettings.dcss │ │ │ └── Form.form │ │ └── TestInformationRegister.mdo │ ├── FormListRefUserVisibilityEnabled │ ├── .project │ ├── .settings │ │ ├── com.e1c.v8codestyle.autosort.prefs │ │ ├── com.e1c.v8codestyle.bsl.prefs │ │ ├── com.e1c.v8codestyle.prefs │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── TestCatalog │ │ │ ├── Forms │ │ │ ├── TestListForm │ │ │ │ ├── Attributes │ │ │ │ │ └── List │ │ │ │ │ │ └── ExtInfo │ │ │ │ │ │ └── ListSettings.dcss │ │ │ │ └── Form.form │ │ │ └── TestListFormRu │ │ │ │ ├── Attributes │ │ │ │ └── Список │ │ │ │ │ └── ExtInfo │ │ │ │ │ └── ListSettings.dcss │ │ │ │ └── Form.form │ │ │ └── TestCatalog.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ └── InputFieldListChoiceMode │ ├── .project │ ├── .settings │ ├── com.e1c.v8codestyle.autosort.prefs │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ └── PROJECT.PMF │ └── src │ ├── CommonForms │ └── Form │ │ ├── Form.form │ │ └── Form.mdo │ └── Configuration │ ├── CommandInterface.cmi │ ├── Configuration.mdo │ └── MainSectionCommandInterface.cmi ├── com.e1c.v8codestyle.md.itests ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── fragment.properties ├── pom.xml ├── src │ └── com │ │ └── e1c │ │ └── v8codestyle │ │ └── md │ │ ├── check │ │ └── itests │ │ │ ├── CheckDescriptionTest.java │ │ │ ├── DbObjectAnyRefTypeCheckTest.java │ │ │ ├── DbObjectMaxNumberLengthCheckTest.java │ │ │ ├── DbObjectRefNonRefTypesCheckTest.java │ │ │ ├── ExtensionMdObjectNamePrefixCheckTest.java │ │ │ ├── MdListObjectPresentationCheckTest.java │ │ │ ├── MdObjectAttributeCommentCheckTest.java │ │ │ ├── MdObjectAttributeCommentNotExistCheckTest.java │ │ │ ├── MdObjectNameLengthTest.java │ │ │ ├── MdObjectNameUnallowedLetterCheckTest.java │ │ │ ├── MdStandardAttributeSynonymEmptyTest.java │ │ │ └── UnsafePasswordStorageCheckTest.java │ │ ├── commonmodule │ │ └── check │ │ │ └── itests │ │ │ ├── CommonModuleNameCachedCheckTest.java │ │ │ ├── CommonModuleNameClientCachedCheckTest.java │ │ │ ├── CommonModuleNameClientServerTest.java │ │ │ ├── CommonModuleNameClientTest.java │ │ │ ├── CommonModuleNameGlobalClientCheckTest.java │ │ │ ├── CommonModuleNameGlobalTest.java │ │ │ ├── CommonModuleNamePrivilegedCheckTest.java │ │ │ ├── CommonModuleNameServerCallCachedCheckTest.java │ │ │ ├── CommonModuleNameServerCallCheckTest.java │ │ │ └── CommonModuleTypeTest.java │ │ ├── configuration │ │ └── check │ │ │ └── itests │ │ │ └── ConfigurationDataLockTest.java │ │ ├── document │ │ └── check │ │ │ └── itests │ │ │ └── DocumentPostInPrivilegedModeCheckTest.java │ │ ├── functionaloption │ │ └── check │ │ │ └── itests │ │ │ └── FunctionalOptionPrivilegedGetModeTest.java │ │ ├── register │ │ └── check │ │ │ └── itests │ │ │ └── RegisterResourcePrecisionTest.java │ │ ├── scheduledjob │ │ └── check │ │ │ └── itests │ │ │ ├── MdScheduledJobPeriodicityCheckTest.java │ │ │ └── ScheduledJobDescriptionCheckTest.java │ │ └── subsystem │ │ └── check │ │ └── itests │ │ └── SubsystemSynonymTooLongCheckTest.java └── workspace │ ├── CommonModuleName │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonModules │ │ └── CommonModuleName │ │ │ └── CommonModuleName.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── CommonModuleType │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonModules │ │ ├── Common │ │ │ └── Common.mdo │ │ ├── CommonClient │ │ │ └── CommonClient.mdo │ │ ├── CommonClientGlobal │ │ │ └── CommonClientGlobal.mdo │ │ ├── CommonServerCall │ │ │ └── CommonServerCall.mdo │ │ ├── CommonServerClient │ │ │ └── CommonServerClient.mdo │ │ ├── CommonServerFullAccess │ │ │ └── CommonServerFullAccess.mdo │ │ └── CommonServerGlobal │ │ │ └── CommonServerGlobal.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── DataLock │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── DocumentPostInPrivilegedMode │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── AccumulationRegisters │ │ └── TestAccRegister │ │ │ └── TestAccRegister.mdo │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── Documents │ │ ├── TestDocument1 │ │ └── TestDocument1.mdo │ │ ├── TestDocument2 │ │ └── TestDocument2.mdo │ │ ├── TestDocument3 │ │ └── TestDocument3.mdo │ │ ├── TestDocument4 │ │ └── TestDocument4.mdo │ │ └── TestDocument5 │ │ └── TestDocument5.mdo │ ├── ExtensionObjectNamePrefixCheck │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ ├── Catalog │ │ │ └── Catalog.mdo │ │ ├── CatalogCommand │ │ │ ├── CatalogCommand.mdo │ │ │ └── Commands │ │ │ │ └── Command │ │ │ │ └── CommandModule.bsl │ │ ├── CatalogCommandNonCompliant │ │ │ └── CatalogCommandNonCompliant.mdo │ │ ├── CatalogFormCompliant │ │ │ ├── CatalogFormCompliant.mdo │ │ │ └── Forms │ │ │ │ └── ItemForm │ │ │ │ └── Form.form │ │ ├── CatalogFormNonCompliant │ │ │ ├── CatalogFormNonCompliant.mdo │ │ │ └── Forms │ │ │ │ └── ItemForm │ │ │ │ └── Form.form │ │ ├── CatalogTabular │ │ │ └── CatalogTabular.mdo │ │ ├── CatalogTabularNonCompliant │ │ │ └── CatalogTabularNonCompliant.mdo │ │ ├── CatalogTemplateCompliant │ │ │ ├── CatalogTemplateCompliant.mdo │ │ │ └── Templates │ │ │ │ └── Template │ │ │ │ └── Template.mxlx │ │ └── CatalogTemplateNonCompliant │ │ │ ├── CatalogTemplateNonCompliant.mdo │ │ │ └── Templates │ │ │ └── Template │ │ │ └── Template.mxlx │ │ ├── CommonModules │ │ └── Compliant │ │ │ ├── Compliant.mdo │ │ │ └── Module.bsl │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── Documents │ │ ├── Document │ │ └── Document.mdo │ │ └── DocumentNonCompliant │ │ └── DocumentNonCompliant.mdo │ ├── ExtensionObjectNamePrefixCheck_Extension │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ ├── Catalog │ │ │ └── Catalog.mdo │ │ ├── CatalogCommand │ │ │ ├── CatalogCommand.mdo │ │ │ └── Commands │ │ │ │ └── Ext1_Command │ │ │ │ └── CommandModule.bsl │ │ ├── CatalogCommandNonCompliant │ │ │ ├── CatalogCommandNonCompliant.mdo │ │ │ └── Commands │ │ │ │ └── C1_Command │ │ │ │ └── CommandModule.bsl │ │ ├── CatalogFormCompliant │ │ │ ├── CatalogFormCompliant.mdo │ │ │ └── Forms │ │ │ │ ├── Ext1_ItemForm │ │ │ │ └── Form.form │ │ │ │ └── ItemForm │ │ │ │ ├── BaseForm │ │ │ │ └── Form.form │ │ │ │ └── Form.form │ │ ├── CatalogFormNonCompliant │ │ │ ├── CatalogFormNonCompliant.mdo │ │ │ └── Forms │ │ │ │ ├── ItemForm │ │ │ │ ├── BaseForm │ │ │ │ │ └── Form.form │ │ │ │ └── Form.form │ │ │ │ └── NonPref_ItemForm │ │ │ │ ├── Form.form │ │ │ │ └── Module.bsl │ │ ├── CatalogTabular │ │ │ └── CatalogTabular.mdo │ │ ├── CatalogTabularNonCompliant │ │ │ └── CatalogTabularNonCompliant.mdo │ │ ├── CatalogTemplateCompliant │ │ │ ├── CatalogTemplateCompliant.mdo │ │ │ └── Templates │ │ │ │ ├── Ext1_Template │ │ │ │ └── Template.mxlx │ │ │ │ └── Template │ │ │ │ └── Template.mxlx │ │ └── CatalogTemplateNonCompliant │ │ │ ├── CatalogTemplateNonCompliant.mdo │ │ │ └── Templates │ │ │ ├── T1_Template │ │ │ └── Template.mxlx │ │ │ └── Template │ │ │ └── Template.mxlx │ │ ├── CommonModules │ │ ├── Compliant │ │ │ ├── Compliant.mdo │ │ │ └── Module.bsl │ │ ├── Ext1_Compliant │ │ │ ├── Ext1_Compliant.mdo │ │ │ └── Module.bsl │ │ └── NonCompliant │ │ │ ├── Module.bsl │ │ │ └── NonCompliant.mdo │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── Documents │ │ ├── Document │ │ └── Document.mdo │ │ └── DocumentNonCompliant │ │ └── DocumentNonCompliant.mdo │ ├── FunctionalOptionPrivilegedGetMode │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ ├── Constants │ │ ├── UseOrganisations │ │ │ └── UseOrganisations.mdo │ │ └── UseWH │ │ │ └── UseWH.mdo │ │ └── FunctionalOptions │ │ ├── UseFinPlan │ │ └── UseFinPlan.mdo │ │ ├── UseOrganisations │ │ └── UseOrganisations.mdo │ │ └── UseWH │ │ └── UseWH.mdo │ ├── MdAnyRefType │ ├── .project │ ├── .settings │ │ ├── com.e1c.v8codestyle.autosort.prefs │ │ ├── com.e1c.v8codestyle.bsl.prefs │ │ ├── com.e1c.v8codestyle.prefs │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ ├── AnyRefTest │ │ │ └── AnyRefTest.mdo │ │ └── RefTest │ │ │ └── RefTest.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── MdCompositeTypeCheck │ ├── .project │ ├── .settings │ │ ├── com.e1c.v8codestyle.autosort.prefs │ │ ├── com.e1c.v8codestyle.bsl.prefs │ │ ├── com.e1c.v8codestyle.prefs │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ ├── OnlyOneTypeTest │ │ │ └── OnlyOneTypeTest.mdo │ │ ├── RefAndOtherTest │ │ │ └── RefAndOtherTest.mdo │ │ └── RefTest │ │ │ └── RefTest.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── MdListObjectPresentation │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── Products │ │ │ └── Products.mdo │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── InformationRegisters │ │ └── Prices │ │ └── Prices.mdo │ ├── MdNumberMaxLength │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── Test │ │ │ └── Test.mdo │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── DefinedTypes │ │ ├── Correct │ │ └── Correct.mdo │ │ └── TooLong │ │ └── TooLong.mdo │ ├── MdObjectAttributeComment │ ├── .project │ ├── .settings │ │ ├── Default.cset │ │ ├── com.e1c.v8codestyle.autosort.prefs │ │ ├── com.e1c.v8codestyle.bsl.prefs │ │ ├── com.e1c.v8codestyle.prefs │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ ├── TestCatalog1 │ │ │ └── TestCatalog1.mdo │ │ └── TestCatalog2 │ │ │ └── TestCatalog2.mdo │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── Documents │ │ ├── TestDocument1 │ │ └── TestDocument1.mdo │ │ ├── TestDocument2 │ │ └── TestDocument2.mdo │ │ └── TestDocument3 │ │ └── TestDocument3.mdo │ ├── MdObjectAttributeCommentNotExist │ ├── .project │ ├── .settings │ │ ├── Default.cset │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ ├── TestCatalog1 │ │ │ └── TestCatalog1.mdo │ │ └── TestCatalog2 │ │ │ └── TestCatalog2.mdo │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── Documents │ │ ├── TestDocument1 │ │ └── TestDocument1.mdo │ │ ├── TestDocument2 │ │ └── TestDocument2.mdo │ │ └── TestDocument3 │ │ └── TestDocument3.mdo │ ├── MdObjectNameLength │ ├── .project │ ├── .settings │ │ ├── Default.cset │ │ ├── com._1c.g5.v8.dt.check.prefs │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── Products │ │ │ └── Products.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── MdObjectNameUnallowedLetter │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ ├── ТестовыйКаталог │ │ │ └── ТестовыйКаталог.mdo │ │ ├── ТестовыйКаталог_комментарий │ │ │ └── ТестовыйКаталог_комментарий.mdo │ │ ├── ТестовыйКаталог_синоним │ │ │ └── ТестовыйКаталог_синоним.mdo │ │ └── ТестовыйКаталог_ё_имя │ │ │ └── ТестовыйКаталог_ё_имя.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── MdScheduledJobPeriodicity │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── ScheduledJobs │ │ ├── ScheduledJobWithDetailedRepeatPeriodLessOneMinute │ │ ├── Schedule.schedule │ │ └── ScheduledJobWithDetailedRepeatPeriodLessOneMinute.mdo │ │ ├── ScheduledJobWithDetailedRepeatPeriodMoreOneMinute │ │ ├── Schedule.schedule │ │ └── ScheduledJobWithDetailedRepeatPeriodMoreOneMinute.mdo │ │ ├── ScheduledJobWithEmptySchedule │ │ ├── Schedule.schedule │ │ └── ScheduledJobWithEmptySchedule.mdo │ │ ├── ScheduledJobWithRepeatPauseLessOneMinute │ │ ├── Schedule.schedule │ │ └── ScheduledJobWithRepeatPauseLessOneMinute.mdo │ │ ├── ScheduledJobWithRepeatPeriodLessOneMinute │ │ ├── Schedule.schedule │ │ └── ScheduledJobWithRepeatPeriodLessOneMinute.mdo │ │ └── ScheduledJobWithRepeatPeriodMoreOneMinute │ │ ├── Schedule.schedule │ │ └── ScheduledJobWithRepeatPeriodMoreOneMinute.mdo │ ├── MdStandardAttributeSynonymEmpty │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ ├── NegativeOwnerTest │ │ │ └── NegativeOwnerTest.mdo │ │ ├── NegativeOwnerTestWithComment │ │ │ └── NegativeOwnerTestWithComment.mdo │ │ ├── NegativeParentTest │ │ │ └── NegativeParentTest.mdo │ │ ├── NegativeParentTestWithComment │ │ │ └── NegativeParentTestWithComment.mdo │ │ ├── PositiveOwnerTest │ │ │ └── PositiveOwnerTest.mdo │ │ └── PositiveParentTest │ │ │ └── PositiveParentTest.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── RegisterResourcePrecision │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── AccountingRegisters │ │ ├── AccountingRegisterTest │ │ │ └── AccountingRegisterTest.mdo │ │ └── AccountingRegisterWithDefinedTypeTest │ │ │ └── AccountingRegisterWithDefinedTypeTest.mdo │ │ ├── AccumulationRegisters │ │ └── AccumulationRegisterTest │ │ │ └── AccumulationRegisterTest.mdo │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ ├── DefinedTypes │ │ ├── CorrectType │ │ │ └── CorrectType.mdo │ │ └── WrongType │ │ │ └── WrongType.mdo │ │ └── Documents │ │ └── DocumentTest │ │ └── DocumentTest.mdo │ ├── ScheduledJobs │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonModules │ │ └── Jobs │ │ │ ├── Jobs.mdo │ │ │ └── Module.bsl │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── ScheduledJobs │ │ ├── NotPredefinedJob │ │ ├── NotPredefinedJob.mdo │ │ └── Schedule.schedule │ │ └── PredefinedJob │ │ ├── PredefinedJob.mdo │ │ └── Schedule.schedule │ ├── SubsystemSynonymTooLong │ ├── .project │ ├── .settings │ │ ├── Default.cset │ │ ├── com.e1c.v8codestyle.autosort.prefs │ │ ├── com.e1c.v8codestyle.bsl.prefs │ │ ├── com.e1c.v8codestyle.prefs │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── Subsystems │ │ ├── TopLongDeIncluded │ │ ├── CommandInterface.cmi │ │ └── TopLongDeIncluded.mdo │ │ ├── TopLongEnIncluded │ │ ├── CommandInterface.cmi │ │ ├── Subsystems │ │ │ └── SubLong │ │ │ │ ├── CommandInterface.cmi │ │ │ │ └── SubLong.mdo │ │ └── TopLongEnIncluded.mdo │ │ ├── TopLongNotIncluded │ │ ├── CommandInterface.cmi │ │ └── TopLongNotIncluded.mdo │ │ ├── TopLongRuEnDeIncluded │ │ ├── CommandInterface.cmi │ │ └── TopLongRuEnDeIncluded.mdo │ │ └── TopShortEnRuDe │ │ ├── CommandInterface.cmi │ │ └── TopShortEnRuDe.mdo │ └── UnsafePasswordStorage │ ├── .project │ ├── .settings │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ └── PROJECT.PMF │ └── src │ ├── Catalogs │ └── Catalog │ │ └── Catalog.mdo │ ├── Configuration │ ├── CommandInterface.cmi │ ├── Configuration.mdo │ └── MainSectionCommandInterface.cmi │ ├── Constants │ └── Constant │ │ └── Constant.mdo │ └── Documents │ └── Document │ └── Document.mdo ├── com.e1c.v8codestyle.ql.itests ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── fragment.properties ├── pom.xml ├── resources │ ├── ql-constants-in-binary-operation │ │ ├── compliant.ql │ │ └── non-compliant.ql │ ├── ql-like-expression-with-field │ │ ├── compliant.ql │ │ └── non-compliant.ql │ ├── ql-virtual-table-filters-compliant.ql │ ├── ql-virtual-table-filters.ql │ ├── temp-table-has-index.ql │ ├── temp-table-has-no-index-top.ql │ └── temp-table-has-no-index.ql ├── src │ └── com │ │ └── e1c │ │ └── v8codestyle │ │ └── ql │ │ └── check │ │ └── itests │ │ ├── AbstractQueryTestBase.java │ │ ├── CamelCaseStringLiteralTest.java │ │ ├── CastToMaxNumberTest.java │ │ ├── CheckDescriptionTest.java │ │ ├── ConstantsInBinaryOperationTest.java │ │ ├── JoinToSubQueryTest.java │ │ ├── LikeExpressionWithFieldTest.java │ │ ├── TempTableHasIndexTest.java │ │ ├── TestingCheckParameters.java │ │ ├── TestingCheckResultAcceptor.java │ │ ├── TestingQlResultAcceptor.java │ │ ├── UsingForUpdateTest.java │ │ └── VirtualTableFiltersCheckTest.java └── workspace │ ├── CastToMaxNumber │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonForms │ │ └── Form │ │ │ ├── Attributes │ │ │ └── List │ │ │ │ └── ExtInfo │ │ │ │ └── ListSettings.dcss │ │ │ ├── Form.form │ │ │ └── Form.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── JoinToSubQuery │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonForms │ │ └── Form │ │ │ ├── Attributes │ │ │ └── List │ │ │ │ └── ExtInfo │ │ │ │ └── ListSettings.dcss │ │ │ ├── Form.form │ │ │ └── Form.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── QlEmptyProject │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ ├── QlFullDemo │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── AccumulationRegisters │ │ └── Stocks │ │ │ └── Stocks.mdo │ │ ├── Catalogs │ │ └── Products │ │ │ └── Products.mdo │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ ├── Documents │ │ └── ProductArraival │ │ │ └── ProductArraival.mdo │ │ ├── Enums │ │ └── ProductType │ │ │ └── ProductType.mdo │ │ ├── InformationRegisters │ │ └── Prices │ │ │ └── Prices.mdo │ │ └── Reports │ │ └── QueryTestReport │ │ ├── QueryTestReport.mdo │ │ └── Templates │ │ └── MainDataCompositionSchema │ │ └── Template.dcs │ ├── StringLiteralCameCase │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── CommonForms │ │ └── Form │ │ │ ├── Attributes │ │ │ └── List │ │ │ │ └── ExtInfo │ │ │ │ └── ListSettings.dcss │ │ │ ├── Form.form │ │ │ └── Form.mdo │ │ └── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ └── UsingForUpdate │ ├── .project │ ├── .settings │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ └── PROJECT.PMF │ └── src │ ├── CommonForms │ └── Form │ │ ├── Attributes │ │ └── List │ │ │ └── ExtInfo │ │ │ └── ListSettings.dcss │ │ ├── Form.form │ │ └── Form.mdo │ └── Configuration │ ├── CommandInterface.cmi │ ├── Configuration.mdo │ └── MainSectionCommandInterface.cmi ├── com.e1c.v8codestyle.right.itests ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── fragment.properties ├── pom.xml ├── src │ └── com │ │ └── e1c │ │ └── v8codestyle │ │ ├── internal │ │ └── right │ │ │ └── itests │ │ │ ├── CheckExternalDependenciesModule.java │ │ │ └── CheckRights.java │ │ └── right │ │ └── check │ │ └── itests │ │ ├── CheckDescriptionTest.java │ │ ├── RightActiveUsersTest.java │ │ ├── RightAdministrationTest.java │ │ ├── RightAllFunctionsModeTest.java │ │ ├── RightConfigurationExtensionsAdministrationTest.java │ │ ├── RightDataAdministrationTest.java │ │ ├── RightExclusiveModeTest.java │ │ ├── RightInteractiveOpenExternalDataProcessorsTest.java │ │ ├── RightInteractiveOpenExternalReportsTest.java │ │ ├── RightOutputToPrinterFileClipboardTest.java │ │ ├── RightSaveUserDataTest.java │ │ ├── RightStartAutomationTest.java │ │ ├── RightStartExternalConnectionTest.java │ │ ├── RightStartThickClientTest.java │ │ ├── RightStartThinClientTest.java │ │ ├── RightStartWebClientTest.java │ │ ├── RightUpdateDatabaseConfigurationTest.java │ │ ├── RightViewEventLogTest.java │ │ ├── RoleRightHasForbiddenTest.java │ │ └── RoleRightHasRlsTest.java └── workspace │ ├── RoleRightHasForbidden │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── Products │ │ │ └── Products.mdo │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── Roles │ │ ├── AllowedRights │ │ ├── AllowedRights.mdo │ │ └── Rights.rights │ │ ├── ForbiddenRights │ │ ├── ForbiddenRights.mdo │ │ └── Rights.rights │ │ └── FullAccess │ │ ├── FullAccess.mdo │ │ └── Rights.rights │ ├── RoleRightHasRls │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ │ └── PROJECT.PMF │ └── src │ │ ├── Catalogs │ │ └── Products │ │ │ └── Products.mdo │ │ ├── Configuration │ │ ├── CommandInterface.cmi │ │ ├── Configuration.mdo │ │ └── MainSectionCommandInterface.cmi │ │ └── Roles │ │ ├── FullAccess │ │ ├── FullAccess.mdo │ │ └── Rights.rights │ │ ├── OtherRls │ │ ├── OtherRls.mdo │ │ └── Rights.rights │ │ └── SystemAdministrator │ │ ├── Rights.rights │ │ └── SystemAdministrator.mdo │ └── StandardRoles │ ├── .project │ ├── .settings │ └── org.eclipse.core.resources.prefs │ ├── DT-INF │ └── PROJECT.PMF │ └── src │ ├── Configuration │ ├── CommandInterface.cmi │ ├── Configuration.mdo │ └── MainSectionCommandInterface.cmi │ └── Roles │ └── StandardRole │ ├── Rights.rights │ └── StandardRole.mdo └── pom.xml /bom/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | bom 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /bom/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bom/html/footer.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/BslDocComment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/BslDocComment.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/BslDocComment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/BslDocComment@2x.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/attribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/attribute.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/attribute@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/attribute@2x.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/attribute_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/attribute_dark.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/attribute_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/attribute_dark@2x.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/description.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/description@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/description@2x.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/description_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/description_dark.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/description_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/description_dark@2x.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/link.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/link@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/link@2x.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/link_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/link_dark.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/link_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/link_dark@2x.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/parameters_section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/parameters_section.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/parameters_section@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/parameters_section@2x.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/parameters_section_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/parameters_section_dark.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/parameters_section_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/parameters_section_dark@2x.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/text.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/text@2x.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/text_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/text_dark.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/text_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/text_dark@2x.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/type.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/type@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/type@2x.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/type_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/type_dark.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/type_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/type_dark@2x.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/type_section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/type_section.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/type_section@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/type_section@2x.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/type_section_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/type_section_dark.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/type_section_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle.bsl.ui/icons/obj16/type_section_dark@2x.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/check.descriptions/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.css 3 | *.js 4 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/dynamic-access-method-not-found.md: -------------------------------------------------------------------------------- 1 | # Method not found in accessed object 2 | 3 | Check that dynamicly accessed method exist in the object 4 | 5 | ## Noncompliant Code Example 6 | 7 | ## Compliant Solution 8 | 9 | ## See 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/function-return-value-type.md: -------------------------------------------------------------------------------- 1 | # Function reuturns typed value 2 | 3 | Check of module strict types system that every function has return value type 4 | 5 | ## Noncompliant Code Example 6 | 7 | ## Compliant Solution 8 | 9 | ## See 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/method-isinrole-role-exist.md: -------------------------------------------------------------------------------- 1 | # Referring to a non-existent role 2 | 3 | In the parameter of the function "IsInRole" must existing role to be specified. 4 | 5 | ## Noncompliant Code Example 6 | 7 | 8 | ## Compliant Solution 9 | 10 | 11 | ## See 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/method-param-value-type.md: -------------------------------------------------------------------------------- 1 | # Method parameter has value type 2 | 3 | Check of module strict types system that every method parameter has value type 4 | 5 | ## Noncompliant Code Example 6 | 7 | ## Compliant Solution 8 | 9 | ## See 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/module-empty-method.md: -------------------------------------------------------------------------------- 1 | # Empty method check 2 | 3 | Empty module method check 4 | 5 | ## Noncompliant Code Example 6 | 7 | ## Compliant Solution 8 | 9 | 10 | ## See 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/module-undefined-function.md: -------------------------------------------------------------------------------- 1 | # Undefined function 2 | 3 | ## Noncompliant Code Example 4 | 5 | 6 | ## Compliant Solution 7 | 8 | 9 | ## See 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/module-undefined-method.md: -------------------------------------------------------------------------------- 1 | # Undefined method 2 | 3 | Undefined function or procedure 4 | 5 | ## Noncompliant Code Example 6 | 7 | ## Compliant Solution 8 | 9 | 10 | ## See 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/module-undefined-variable.md: -------------------------------------------------------------------------------- 1 | # Undefined variable 2 | 3 | ## Noncompliant Code Example 4 | 5 | 6 | ## Compliant Solution 7 | 8 | 9 | ## See 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/module-unused-local-variable.md: -------------------------------------------------------------------------------- 1 | # Unused local variable check 2 | 3 | Unused module local variable check 4 | 5 | ## Noncompliant Code Example 6 | 7 | ## Compliant Solution 8 | 9 | 10 | ## See 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/module-unused-method.md: -------------------------------------------------------------------------------- 1 | # Unused method check 2 | 3 | Unused module method check 4 | 5 | ## Noncompliant Code Example 6 | 7 | ## Compliant Solution 8 | 9 | 10 | ## See 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/property-return-type.md: -------------------------------------------------------------------------------- 1 | # Object property has return value type 2 | 3 | Check of module strict types system that dynamicly accessed object property has reutun type 4 | 5 | ## Noncompliant Code Example 6 | 7 | ## Compliant Solution 8 | 9 | ## See 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/doc-comment-collection-item-type.md: -------------------------------------------------------------------------------- 1 | # Тип коллекций в документирующем комментарии содержит тип элемента коллекции 2 | 3 | ## Неправильно 4 | 5 | ## Правильно 6 | 7 | ## См. 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/doc-comment-complex-type-with-link.md: -------------------------------------------------------------------------------- 1 | # Поле документирующего комментария использует объявление сложного типа вместо ссылки на тип 2 | 3 | ## Неправильно 4 | 5 | ## Правильно 6 | 7 | ## См. 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/doc-comment-description-ends-on-dot.md: -------------------------------------------------------------------------------- 1 | # Многострочное описание документирующего комментария оканчивается на точку 2 | 3 | ## Неправильно 4 | 5 | ## Правильно 6 | 7 | ## См. 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/doc-comment-export-function-return-section.md: -------------------------------------------------------------------------------- 1 | # Секция возвращаемого значения документирующего комментария для экспортной функции 2 | 3 | ## Неправильно 4 | 5 | ## Правильно 6 | 7 | ## См. 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/doc-comment-field-in-description-suggestion.md: -------------------------------------------------------------------------------- 1 | # Многострочное описание документирующего комментария содержит определение поля 2 | 3 | ## Неправильно 4 | 5 | ## Правильно 6 | 7 | ## См. 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/doc-comment-field-name.md: -------------------------------------------------------------------------------- 1 | # Поле документирующего комментария является корректным именем 2 | 3 | ## Неправильно 4 | 5 | ## Правильно 6 | 7 | ## См. 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/doc-comment-field-type-strict.md: -------------------------------------------------------------------------------- 1 | # Поле документирующего комментария имеет описание типа 2 | 3 | Система строгой типизации кода проверяет, что поле документирующего комментария имеет описание типа 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/doc-comment-field-type.md: -------------------------------------------------------------------------------- 1 | # Поле документирующего комментария не имеет определения типа 2 | 3 | ## Неправильно 4 | 5 | ## Правильно 6 | 7 | ## См. 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/doc-comment-parameter-in-description-suggestion.md: -------------------------------------------------------------------------------- 1 | # Многострочное описание документирующего комментария содержит определение параметра 2 | 3 | ## Неправильно 4 | 5 | ## Правильно 6 | 7 | ## См. 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/doc-comment-parameter-section.md: -------------------------------------------------------------------------------- 1 | # В секции параметров документирующего комментария пропущено определение параметра 2 | 3 | ## Неправильно 4 | 5 | ## Правильно 6 | 7 | ## См. 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/doc-comment-procedure-return-section.md: -------------------------------------------------------------------------------- 1 | # Документирующий комментарий содежрит секцию возвращаемого значения для процедуры 2 | 3 | ## Неправильно 4 | 5 | ## Правильно 6 | 7 | ## См. 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/doc-comment-ref-link.md: -------------------------------------------------------------------------------- 1 | # Ссылка документирующего комментария на существующий объект 2 | 3 | ## Неправильно 4 | 5 | ## Правильно 6 | 7 | ## См. 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/dynamic-access-method-not-found.md: -------------------------------------------------------------------------------- 1 | # Метод в объекте не найден 2 | 3 | Система строгой типизации кода проверяет что динамически вызываемый метод существует в объекте 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/function-return-value-type.md: -------------------------------------------------------------------------------- 1 | # Функция возвращает типизированное значение 2 | 3 | Система строгой типизации кода проверяет что каждая функция возвращает типизированное значение 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/invocation-parameter-type-intersect.md: -------------------------------------------------------------------------------- 1 | # Вызываемый тип пересекается с типом параметра 2 | 3 | Система строгой типизации кода проверяет что тип вызываемого выражения пересекается с типом параметра вызываемого метода 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/method-isinrole-role-exist.md: -------------------------------------------------------------------------------- 1 | # Обращение к несуществующей роли 2 | 3 | В параметре функции "РольДоступна" должна быть указана существующая роль. 4 | 5 | ## Неправильно 6 | 7 | 8 | ## Правильно 9 | 10 | 11 | ## См. 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/method-param-value-type.md: -------------------------------------------------------------------------------- 1 | # Параметр метода имеет тип 2 | 3 | Система строгой типизации кода проверяет что каждый параметр метода имеет тип значения 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/module-empty-method.md: -------------------------------------------------------------------------------- 1 | # Проверка пустых методов 2 | 3 | Проверка модуля на наличие пустых методов 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/module-undefined-function.md: -------------------------------------------------------------------------------- 1 | # Функция не определена 2 | 3 | ## Неправильно 4 | 5 | ## Правильно 6 | 7 | ## См. 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/module-undefined-method.md: -------------------------------------------------------------------------------- 1 | # Метод не определен 2 | 3 | Функция или процедура не определена 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/module-undefined-variable.md: -------------------------------------------------------------------------------- 1 | # Переменная не определена 2 | 3 | ## Неправильно 4 | 5 | ## Правильно 6 | 7 | ## См. 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/module-unused-local-variable.md: -------------------------------------------------------------------------------- 1 | # Проверка неиспользуемых локальных переменных 2 | 3 | Проверка модуля на наличие неиспользуемых локальных переменных 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/module-unused-method.md: -------------------------------------------------------------------------------- 1 | # Проверка неиспользуемых методов 2 | 3 | Проверка модуля на наличие неиспользуемых методов 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/property-return-type.md: -------------------------------------------------------------------------------- 1 | # Свойство объекта имеет тип возвращаемого значения 2 | 3 | Система строгой типизации кода проверяет что динамическое свойство объекта имеет тип возвращаемого значения 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/statement-type-change.md: -------------------------------------------------------------------------------- 1 | # Утверждение меняет тип 2 | 3 | Система строгой типизации кода проверяет что утверждение (строка присвоения значения) меняет тип 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/ru/structure-consructor-too-many-keys.md: -------------------------------------------------------------------------------- 1 | # Конструктор структуры содержит слишком много ключей 2 | 3 | Проверка конструктора структуры, содержащего больше 3х ключей 4 | 5 | 6 | ## Неправильно 7 | 8 | ## Правильно 9 | 10 | ## См. 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/markdown/statement-type-change.md: -------------------------------------------------------------------------------- 1 | # Statement type change 2 | 3 | Check of module strict types system that statement does not change type 4 | 5 | ## Noncompliant Code Example 6 | 7 | ## Compliant Solution 8 | 9 | ## See 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/templates/en/bot_module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region EventHandlers 3 | 4 | // Enter code here. 5 | 6 | #EndRegion 7 | 8 | #Region Private 9 | 10 | // Enter code here. 11 | 12 | #EndRegion 13 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/templates/en/command_module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region EventHandlers 3 | 4 | // Enter code here. 5 | //%CURRENT_CODE% 6 | #EndRegion 7 | 8 | #Region Private 9 | 10 | // Enter code here. 11 | 12 | #EndRegion 13 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/templates/en/common_module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region Public 3 | 4 | // Enter code here. 5 | 6 | #EndRegion 7 | 8 | #Region Internal 9 | 10 | // Enter code here. 11 | 12 | #EndRegion 13 | 14 | #Region Private 15 | 16 | // Enter code here. 17 | 18 | #EndRegion 19 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/templates/en/external_conn_module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region EventHandlers 3 | 4 | // Enter code here. 5 | 6 | #EndRegion 7 | 8 | #Region Private 9 | 10 | // Enter code here. 11 | 12 | #EndRegion 13 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/templates/en/http_service_module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region EventHandlers 3 | 4 | // Enter code here. 5 | 6 | #EndRegion 7 | 8 | #Region Private 9 | 10 | // Enter code here. 11 | 12 | #EndRegion 13 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/templates/en/integration_service_module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region EventHandlers 3 | 4 | // Enter code here. 5 | 6 | #EndRegion 7 | 8 | #Region Private 9 | 10 | // Enter code here. 11 | 12 | #EndRegion 13 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/templates/en/managed_app_module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region Variables 3 | 4 | #EndRegion 5 | 6 | #Region EventHandlers 7 | 8 | // Enter code here. 9 | 10 | #EndRegion 11 | 12 | #Region Private 13 | 14 | // Enter code here. 15 | 16 | #EndRegion 17 | 18 | #Region Initialize 19 | 20 | #EndRegion 21 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/templates/en/ordinary_app_module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region Variables 3 | 4 | #EndRegion 5 | 6 | #Region EventHandlers 7 | 8 | // Enter code here. 9 | 10 | #EndRegion 11 | 12 | #Region Private 13 | 14 | // Enter code here. 15 | 16 | #EndRegion 17 | 18 | #Region Initialize 19 | 20 | #EndRegion 21 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/templates/en/session_module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #If Server Or ThickClientOrdinaryApplication Or ExternalConnection Then 3 | 4 | #Region EventHandlers 5 | 6 | // Enter code here. 7 | 8 | #EndRegion 9 | 10 | #Region Private 11 | 12 | // Enter code here. 13 | 14 | #EndRegion 15 | 16 | #EndIf 17 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/templates/en/web_service_module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region EventHandlers 3 | 4 | // Enter code here. 5 | 6 | #EndRegion 7 | 8 | #Region Private 9 | 10 | // Enter code here. 11 | 12 | #EndRegion 13 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/templates/ru/bot_module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Область ОбработчикиСобытий 3 | 4 | // Код процедур и функций 5 | 6 | #КонецОбласти 7 | 8 | #Область СлужебныеПроцедурыИФункции 9 | 10 | // Код процедур и функций 11 | 12 | #КонецОбласти 13 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/templates/ru/command_module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Область ОбработчикиСобытий 3 | 4 | // Код процедур и функций 5 | //%CURRENT_CODE% 6 | #КонецОбласти 7 | 8 | #Область СлужебныеПроцедурыИФункции 9 | 10 | // Код процедур и функций 11 | 12 | #КонецОбласти 13 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/templates/ru/external_conn_module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Область ОбработчикиСобытий 3 | 4 | // Код процедур и функций 5 | 6 | #КонецОбласти 7 | 8 | #Область СлужебныеПроцедурыИФункции 9 | 10 | // Код процедур и функций 11 | 12 | #КонецОбласти 13 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/templates/ru/http_service_module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Область ОбработчикиСобытий 3 | 4 | // Код процедур и функций 5 | 6 | #КонецОбласти 7 | 8 | #Область СлужебныеПроцедурыИФункции 9 | 10 | // Код процедур и функций 11 | 12 | #КонецОбласти 13 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/templates/ru/integration_service_module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Область ОбработчикиСобытий 3 | 4 | // Код процедур и функций 5 | 6 | #КонецОбласти 7 | 8 | #Область СлужебныеПроцедурыИФункции 9 | 10 | // Код процедур и функций 11 | 12 | #КонецОбласти 13 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.bsl/templates/ru/web_service_module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Область ОбработчикиСобытий 3 | 4 | // Код процедур и функций 5 | 6 | #КонецОбласти 7 | 8 | #Область СлужебныеПроцедурыИФункции 9 | 10 | // Код процедур и функций 11 | 12 | #КонецОбласти 13 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.form/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/com/e1c/v8codestyle/form/check/messages_ru.properties=UTF-8 3 | encoding//src/com/e1c/v8codestyle/form/fix/messages_ru.properties=UTF-8 4 | encoding/=UTF-8 5 | encoding/plugin_ru.properties=UTF-8 6 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.form/check.descriptions/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.css 3 | *.js 4 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.form/markdown/input-field-list-choice-mode.md: -------------------------------------------------------------------------------- 1 | # Check input field has correct list choice mode if choice list is not empty 2 | 3 | Check input field has correct list choice mode if choice list is not empty. 4 | 5 | ## Noncompliant Code Example 6 | 7 | ## Compliant Solution 8 | 9 | ## See 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.form/markdown/ru/data-composition-conditional-appearance-use.md: -------------------------------------------------------------------------------- 1 | # Условное оформление в формах 2 | 3 | Настройку условного оформления рекомендуется делать в коде формы (а не в свойствах формы). 4 | 5 | ## См. 6 | 7 | - [Условное оформление в формах](https://its.1c.ru/db/v8std#content:710:hdoc:2.1) -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/com/e1c/v8codestyle/md/ui/messages_ru.properties=UTF-8 3 | encoding/=UTF-8 4 | encoding/plugin_ru.properties=UTF-8 5 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/com/e1c/v8codestyle/md/check/messages_ru.properties=UTF-8 3 | encoding//src/com/e1c/v8codestyle/md/messages_ru.properties=UTF-8 4 | encoding/=UTF-8 5 | encoding/plugin_ru.properties=UTF-8 6 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md/check.descriptions/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.css 3 | *.js 4 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md/markdown/common-module-name-client-server.md: -------------------------------------------------------------------------------- 1 | # Client-server common module should end with ClientServer suffix 2 | 3 | Client-server common module should end with ClientServer suffix 4 | 5 | 6 | ## Noncompliant Code Example 7 | 8 | ## Compliant Solution 9 | 10 | ## See 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md/markdown/common-module-name-client.md: -------------------------------------------------------------------------------- 1 | # Client common module should end with Client suffix 2 | 3 | Client common module should end with Client suffix 4 | 5 | 6 | ## Noncompliant Code Example 7 | 8 | ## Compliant Solution 9 | 10 | ## See 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md/markdown/common-module-name-full-access.md: -------------------------------------------------------------------------------- 1 | # Privileged common module should end with FullAccess suffix 2 | 3 | Privileged common module should end with FullAccess suffix 4 | 5 | 6 | ## Noncompliant Code Example 7 | 8 | ## Compliant Solution 9 | 10 | ## See 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md/markdown/common-module-name-global.md: -------------------------------------------------------------------------------- 1 | # Global common module should end with Global suffix 2 | 3 | Global common module should end with Global suffix 4 | 5 | 6 | ## Noncompliant Code Example 7 | 8 | ## Compliant Solution 9 | 10 | ## See 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md/markdown/common-module-type.md: -------------------------------------------------------------------------------- 1 | # Common module has incorrect type 2 | 3 | Common module has incorrect type 4 | 5 | 6 | ## Noncompliant Code Example 7 | 8 | ## Compliant Solution 9 | 10 | ## See 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md/markdown/configuration-data-lock-mode.md: -------------------------------------------------------------------------------- 1 | # Configuration data lock mode 2 | 3 | Application should use managed data lock mode 4 | 5 | 6 | ## Noncompliant Code Example 7 | 8 | ## Compliant Solution 9 | 10 | ## See 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md/markdown/mdo-name-length.md: -------------------------------------------------------------------------------- 1 | # Metadata object name length 2 | 3 | Metadata object name length should be less than 80 4 | 5 | 6 | ## Noncompliant Code Example 7 | 8 | ## Compliant Solution 9 | 10 | ## See 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md/markdown/register-resource-precision.md: -------------------------------------------------------------------------------- 1 | # Accumulation or accounting register resource precision 2 | 3 | Accumulation or accounting register resource precision must be no more than 25 4 | 5 | 6 | ## Noncompliant Code Example 7 | 8 | ## Compliant Solution 9 | 10 | ## See 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md/markdown/ru/common-module-name-client-server.md: -------------------------------------------------------------------------------- 1 | # Клиент-серверный общий модуль должен оканчиваться на суффикс КлиентСервер 2 | 3 | Клиент-серверный общий модуль должен оканчиваться на суффикс КлиентСервер 4 | 5 | 6 | ## Неправильно 7 | 8 | ## Правильно 9 | 10 | ## См. 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md/markdown/ru/common-module-name-client.md: -------------------------------------------------------------------------------- 1 | # Клиентский общий модуль должен оканчиваться на суффикс Клиент 2 | 3 | Клиентский общий модуль должен оканчиваться на суффикс Клиент 4 | 5 | 6 | ## Неправильно 7 | 8 | ## Правильно 9 | 10 | ## См. 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md/markdown/ru/common-module-name-global.md: -------------------------------------------------------------------------------- 1 | # Глобальный общий модуль должен оканчиваться на суффикс Глобальный 2 | 3 | Глобальный общий модуль должен оканчиваться на суффикс Глобальный 4 | 5 | 6 | ## Неправильно 7 | 8 | ## Правильно 9 | 10 | ## См. 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md/markdown/ru/common-module-type.md: -------------------------------------------------------------------------------- 1 | # Общий модуль имеет некорректный тип 2 | 3 | Общий модуль имеет некорректный тип 4 | 5 | 6 | ## Неправильно 7 | 8 | ## Правильно 9 | 10 | ## См. 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md/markdown/ru/configuration-data-lock-mode.md: -------------------------------------------------------------------------------- 1 | # Режим блокировки данных конфигурации 2 | 3 | Приложение должно использовать управляемый режим блокировки данных 4 | 5 | 6 | ## Неправильно 7 | 8 | ## Правильно 9 | 10 | ## См. 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md/markdown/ru/mdo-name-length.md: -------------------------------------------------------------------------------- 1 | # Длина имени объекта метаданных 2 | 3 | Длина имени объекта метаданного должна быть меньше чем 80 4 | 5 | 6 | ## Неправильно 7 | 8 | ## Правильно 9 | 10 | ## См. 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md/markdown/ru/register-resource-precision.md: -------------------------------------------------------------------------------- 1 | # Длина ресурса регистра накопления или бухгалтерии 2 | 3 | Длина ресурса регистра накопления или бухгалтерии должна быть не больше 25 знаков 4 | 5 | 6 | ## Неправильно 7 | 8 | ## Правильно 9 | 10 | ## См. 11 | 12 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.md/src/com/e1c/v8codestyle/md/configuration/check/messages.properties: -------------------------------------------------------------------------------- 1 | 2 | ConfigurationDataLock_description = Application should use managed data lock mode 3 | 4 | ConfigurationDataLock_message = Application should use managed data lock mode 5 | 6 | ConfigurationDataLock_title = Configuration data lock mode 7 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.ql/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/com/e1c/v8codestyle/ql/check/messages_ru.properties=UTF-8 3 | encoding/=UTF-8 4 | encoding/plugin_ru.properties=UTF-8 5 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.ql/check.descriptions/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.css 3 | *.js 4 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.ql/markdown/ql-camel-case-string-literal.md: -------------------------------------------------------------------------------- 1 | # Query string literal contains non CamelCase content 2 | 3 | 4 | 5 | ## Noncompliant Code Example 6 | 7 | ## Compliant Solution 8 | 9 | ## See 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.ql/markdown/ql-cast-to-max-number.md: -------------------------------------------------------------------------------- 1 | # Query cast to max number 2 | 3 | 4 | 5 | ## Noncompliant Code Example 6 | 7 | ## Compliant Solution 8 | 9 | ## See 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.ql/markdown/ql-join-to-sub-query.md: -------------------------------------------------------------------------------- 1 | # Query join with sub query 2 | 3 | 4 | 5 | ## Noncompliant Code Example 6 | 7 | ## Compliant Solution 8 | 9 | ## See 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.ql/markdown/ru/ql-camel-case-string-literal.md: -------------------------------------------------------------------------------- 1 | # Строковый литерал в запросе содержит не КемелКейс контент 2 | 3 | 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.ql/markdown/ru/ql-cast-to-max-number.md: -------------------------------------------------------------------------------- 1 | # Выражение к максимальному числу в запросе 2 | 3 | 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.ql/markdown/ru/ql-join-to-sub-query.md: -------------------------------------------------------------------------------- 1 | # Соединение запроса с подзапросом 2 | 3 | 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/com/e1c/v8codestyle/right/check/messages_ru.properties=UTF-8 3 | encoding/=UTF-8 4 | encoding/plugin_ru.properties=UTF-8 5 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/check.descriptions/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.css 3 | *.js 4 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-active-users.md: -------------------------------------------------------------------------------- 1 | # Right set: Active users 2 | 3 | ## Noncompliant Code Example 4 | 5 | ## Compliant Solution 6 | 7 | ## See 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-administration.md: -------------------------------------------------------------------------------- 1 | # Right set: Administration 2 | 3 | ## Noncompliant Code Example 4 | 5 | ## Compliant Solution 6 | 7 | ## See 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-all-functions-mode.md: -------------------------------------------------------------------------------- 1 | # Right set: All functions mode 2 | 3 | ## Noncompliant Code Example 4 | 5 | ## Compliant Solution 6 | 7 | ## See 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-configuration-extensions-administration.md: -------------------------------------------------------------------------------- 1 | # Right set: Configuration Extensions administration 2 | 3 | ## Noncompliant Code Example 4 | 5 | ## Compliant Solution 6 | 7 | ## See 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-data-administration.md: -------------------------------------------------------------------------------- 1 | # Right set: Data administration 2 | 3 | ## Noncompliant Code Example 4 | 5 | ## Compliant Solution 6 | 7 | ## See 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-delete.md: -------------------------------------------------------------------------------- 1 | # Role Right set: Delete 2 | 3 | We recommend that you grant the deletion right in the FullAccess and SystemAdministrator roles only. 4 | 5 | ## See 6 | 7 | - [Standard roles](https://support.1ci.com/hc/en-us/articles/360011003200-Standard-roles) 8 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-exclusive-mode.md: -------------------------------------------------------------------------------- 1 | # Right set: Exclusive mode 2 | 3 | ## Noncompliant Code Example 4 | 5 | ## Compliant Solution 6 | 7 | ## See 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-interactive-clear-deletion-mark-predefined-data.md: -------------------------------------------------------------------------------- 1 | # right-interactive-clear-deletion-mark-predefined-data 2 | 3 | 4 | 5 | ## Noncompliant Code Example 6 | 7 | 8 | 9 | ## Compliant Solution 10 | 11 | 12 | ## See 13 | 14 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-interactive-delete-marked-predefined-data.md: -------------------------------------------------------------------------------- 1 | # right-interactive-delete-marked-predefined-data 2 | 3 | 4 | 5 | ## Noncompliant Code Example 6 | 7 | 8 | 9 | ## Compliant Solution 10 | 11 | 12 | ## See 13 | 14 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-interactive-delete-predefined-data.md: -------------------------------------------------------------------------------- 1 | # right-interactive-delete-predefined-data 2 | 3 | 4 | 5 | ## Noncompliant Code Example 6 | 7 | 8 | 9 | ## Compliant Solution 10 | 11 | 12 | ## See 13 | 14 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-interactive-delete.md: -------------------------------------------------------------------------------- 1 | # right-interactive-delete 2 | 3 | 4 | 5 | ## Noncompliant Code Example 6 | 7 | 8 | 9 | ## Compliant Solution 10 | 11 | 12 | ## See 13 | 14 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-interactive-open-external-data-processors.md: -------------------------------------------------------------------------------- 1 | # Right set: Interactive open external data processors 2 | 3 | ## Noncompliant Code Example 4 | 5 | ## Compliant Solution 6 | 7 | ## See 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-interactive-open-external-reports.md: -------------------------------------------------------------------------------- 1 | # Right set: Interactive open external reports 2 | 3 | ## Noncompliant Code Example 4 | 5 | ## Compliant Solution 6 | 7 | ## See 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-interactive-set-deletion-mark-predefined-data.md: -------------------------------------------------------------------------------- 1 | # right-interactive-set-deletion-mark-predefined-data 2 | 3 | 4 | 5 | ## Noncompliant Code Example 6 | 7 | 8 | 9 | ## Compliant Solution 10 | 11 | 12 | ## See 13 | 14 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-output-to-printer-file-clipboard.md: -------------------------------------------------------------------------------- 1 | # Right set: Output 2 | 3 | ## Noncompliant Code Example 4 | 5 | ## Compliant Solution 6 | 7 | ## See 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-save-user-data.md: -------------------------------------------------------------------------------- 1 | # Right set: Save user data 2 | 3 | ## Noncompliant Code Example 4 | 5 | ## Compliant Solution 6 | 7 | ## See 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-start-automation.md: -------------------------------------------------------------------------------- 1 | # Right set: Automation 2 | 3 | ## Noncompliant Code Example 4 | 5 | ## Compliant Solution 6 | 7 | ## See 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-start-external-connection.md: -------------------------------------------------------------------------------- 1 | # Right set: External connection 2 | 3 | ## Noncompliant Code Example 4 | 5 | ## Compliant Solution 6 | 7 | ## See 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-start-thick-client.md: -------------------------------------------------------------------------------- 1 | # Right set: Thick client 2 | 3 | ## Noncompliant Code Example 4 | 5 | ## Compliant Solution 6 | 7 | ## See 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-start-thin-client.md: -------------------------------------------------------------------------------- 1 | # Right set: Thin client 2 | 3 | ## Noncompliant Code Example 4 | 5 | ## Compliant Solution 6 | 7 | ## See 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-start-web-client.md: -------------------------------------------------------------------------------- 1 | # Right set: Web client 2 | 3 | ## Noncompliant Code Example 4 | 5 | ## Compliant Solution 6 | 7 | ## See 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-update-database-configuration.md: -------------------------------------------------------------------------------- 1 | # Right set: Update database configuration 2 | 3 | ## Noncompliant Code Example 4 | 5 | ## Compliant Solution 6 | 7 | ## See 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/right-view-event-log.md: -------------------------------------------------------------------------------- 1 | # Right set: Event log 2 | 3 | ## Noncompliant Code Example 4 | 5 | ## Compliant Solution 6 | 7 | ## See 8 | 9 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/role-right-has-rls.md: -------------------------------------------------------------------------------- 1 | # Role Right has RLS 2 | 3 | 4 | 5 | ## Noncompliant Code Example 6 | 7 | 8 | 9 | ## Compliant Solution 10 | 11 | 12 | ## See 13 | 14 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/ru/right-delete.md: -------------------------------------------------------------------------------- 1 | # Установлено право "Удаление" 2 | 3 | Право удаления рекомендуется оставить только в ролях ПолныеПрава и АдминистраторСистемы. 4 | 5 | ## См. 6 | 7 | - [Стандартные роли](https://its.1c.ru/db/v8std#content:488:hdoc:5) -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/ru/right-interactive-clear-deletion-mark-predefined-data.md: -------------------------------------------------------------------------------- 1 | # Установлено право "ИнтерактивноеСнятиеПометкиУдаленияПредопределенныхДанных" 2 | 3 | 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/ru/right-interactive-delete-marked-predefined-data.md: -------------------------------------------------------------------------------- 1 | # Установлено право "ИнтерактивноеУдалениеПомеченныхПредопределенныхДанных" 2 | 3 | 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/ru/right-interactive-delete-predefined-data.md: -------------------------------------------------------------------------------- 1 | # Установлено право "ИнтерактивноеУдалениеПредопределенныхДанных" 2 | 3 | 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/ru/right-interactive-delete.md: -------------------------------------------------------------------------------- 1 | # Установлено право "ИнтерактивноеУдаление" 2 | 3 | 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/ru/right-interactive-set-deletion-mark-predefined-data.md: -------------------------------------------------------------------------------- 1 | # Установлено право "ИнтерактивноеПометкаУдаленияПредопределенныхДанных" 2 | 3 | 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.right/markdown/ru/role-right-has-rls.md: -------------------------------------------------------------------------------- 1 | # Право роли содержит текст ограничения доступа (RLS) 2 | 3 | 4 | 5 | ## Неправильно 6 | 7 | ## Правильно 8 | 9 | ## См. 10 | 11 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/com/e1c/v8codestyle/internal/ui/messages_ru.properties=UTF-8 3 | encoding/=UTF-8 4 | encoding/plugin_ru.properties=UTF-8 5 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/com/e1c/v8codestyle/internal/messages_ru.properties=UTF-8 3 | encoding/=UTF-8 4 | encoding/plugin_ru.properties=UTF-8 5 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle/about.ini: -------------------------------------------------------------------------------- 1 | aboutText=1C:Code style V8 2 | featureImage=logo.png 3 | -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle/logo.png -------------------------------------------------------------------------------- /bundles/com.e1c.v8codestyle/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/bundles/com.e1c.v8codestyle/logo@2x.png -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | toc.md 2 | changelog.md 3 | -------------------------------------------------------------------------------- /docs/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | encoding/plugin_ru.properties=UTF-8 4 | -------------------------------------------------------------------------------- /docs/.settings/org.eclipse.jdt.groovy.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | groovy.compiler.level=30 3 | -------------------------------------------------------------------------------- /docs/checks/.gitignore: -------------------------------------------------------------------------------- 1 | md/ 2 | form/ 3 | bsl/ 4 | ql/ 5 | right/ 6 | -------------------------------------------------------------------------------- /docs/html/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.css 3 | *.js 4 | *.xml 5 | -------------------------------------------------------------------------------- /docs/src/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/docs/src/.gitkeep -------------------------------------------------------------------------------- /docs/tools/common-module-types.md: -------------------------------------------------------------------------------- 1 | # Создание общих модулей по типам 2 | 3 | В помощник создания нового общего модуля добавлена страница выбора типа модуля и суффикса из списка, определяемого стандартом. 4 | 5 | По выбранному типу устанавливаются свойства общего модуля. 6 | -------------------------------------------------------------------------------- /features/com.e1c.v8codestyle.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | encoding/feature_ru.properties=UTF-8 4 | -------------------------------------------------------------------------------- /features/com.e1c.v8codestyle.sdk.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /java.header: -------------------------------------------------------------------------------- 1 | ^/\**$ 2 | ^ \* Copyright \(C\) (\d\d\d\d), 1C-Soft LLC and others\.$ 3 | ^ \*$ -------------------------------------------------------------------------------- /repositories/com.e1c.v8codestyle.repository.sdk/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /repositories/com.e1c.v8codestyle.repository/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | com.e1c.v8codestyle.repository 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /repositories/com.e1c.v8codestyle.repository/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /targets/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | com.e1c.v8codestyle.targets 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /targets/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/Sort/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/Sort/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/Sort/src/CommonModules/АМ2_4Модуль/Module.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/tests/com.e1c.v8codestyle.autosort.itests/workspace/Sort/src/CommonModules/АМ2_4Модуль/Module.bsl -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/Sort/src/CommonModules/АМ_Модуль/Module.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/tests/com.e1c.v8codestyle.autosort.itests/workspace/Sort/src/CommonModules/АМ_Модуль/Module.bsl -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/Sort/src/CommonModules/АМодуль/Module.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/tests/com.e1c.v8codestyle.autosort.itests/workspace/Sort/src/CommonModules/АМодуль/Module.bsl -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/Sort/src/CommonModules/БМодуль/Module.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/tests/com.e1c.v8codestyle.autosort.itests/workspace/Sort/src/CommonModules/БМодуль/Module.bsl -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/Sort/src/CommonModules/ГМодуль/Module.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/tests/com.e1c.v8codestyle.autosort.itests/workspace/Sort/src/CommonModules/ГМодуль/Module.bsl -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/Sort/src/CommonModules/ОбщийМодуль/Module.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/tests/com.e1c.v8codestyle.autosort.itests/workspace/Sort/src/CommonModules/ОбщийМодуль/Module.bsl -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/Sort/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/Sort/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/SubsystemsAutoSort/.settings/com.e1c.v8codestyle.autosort.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | topObjects=true 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/SubsystemsAutoSort/.settings/com.e1c.v8codestyle.prefs: -------------------------------------------------------------------------------- 1 | commonChecks=true 2 | eclipse.preferences.version=1 3 | standardChecks=true 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/SubsystemsAutoSort/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/SubsystemsAutoSort/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/SubsystemsAutoSort/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/SubsystemsAutoSort/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/SubsystemsAutoSort/src/Subsystems/Subsystem/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/SubsystemsAutoSort/src/Subsystems/Subsystem/Subsystems/Subsystem1/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.autosort.itests/workspace/SubsystemsAutoSort/src/Subsystems/Subsystem/Subsystems/Subsystem2/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/async-call-promise.bsl: -------------------------------------------------------------------------------- 1 | 2 | Асинх Процедура Тест1(Параметры) 3 | 4 | Ждать ВопросАсинх(Параметры,); 5 | Сообщить("Закрыли предупреждение"); 6 | 7 | КонецПроцедуры -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/async-call-promise2.bsl: -------------------------------------------------------------------------------- 1 | 2 | Асинх Процедура Тест2(Параметры) 3 | 4 | Обещание = ПредупреждениеАсинх(Параметры); 5 | Ждать Обещание; 6 | Сообщить("Закрыли предупреждение"); 7 | 8 | КонецПроцедуры -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/async-call-promise3.bsl: -------------------------------------------------------------------------------- 1 | 2 | Асинх Функция Тест3(Параметры) 3 | 4 | Возврат Ждать ПредупреждениеАсинх(Параметры); 5 | 6 | КонецФункции -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/async-call-promise4.bsl: -------------------------------------------------------------------------------- 1 | 2 | Асинх Функция Тест4(Параметры) 3 | 4 | Обещание = ПредупреждениеАсинх(Параметры); 5 | Возврат Ждать Обещание; 6 | 7 | КонецФункции -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/async-call-spread-sh-doc.bsl: -------------------------------------------------------------------------------- 1 | 2 | 3 | Процедура Тест() 4 | 5 | ТабДок = Новый ТабличныйДокумент; 6 | ТабДок.ЗаписатьАсинх(); 7 | 8 | Сообщить("кто быстрее?"); 9 | 10 | КонецПроцедуры -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/change-and-validate-instead-of-around.bsl: -------------------------------------------------------------------------------- 1 | Procedure MyProcedure(Param) Export 2 | 3 | Param = 1; 4 | 5 | EndProcedure 6 | 7 | Function MyFunction() Export 8 | 9 | Return 1; 10 | 11 | EndFunction -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/code-after-async-call-existence.bsl: -------------------------------------------------------------------------------- 1 | 2 | &НаКлиенте 3 | Процедура Тест() 4 | 5 | Текст = "Текст предупреждения"; 6 | ПоказатьПредупреждение(, Текст); 7 | Сообщить("Закрыли предупреждение"); 8 | 9 | КонецПроцедуры -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/common-module-missing-api.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure GetData() 3 | 4 | EndProcedure 5 | 6 | Procedure Do2() 7 | 8 | EndProcedure 9 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/deprecated-method-compliant.bsl: -------------------------------------------------------------------------------- 1 | #Region Public 2 | 3 | #Region Deprecated 4 | 5 | // Deprecated. Instead, use SupportedProcedure 6 | Procedure DeprecatedProcedure() Export 7 | 8 | DeprecatedProcedure() 9 | 10 | EndProcedure 11 | 12 | #EndRegion 13 | 14 | #EndRegion -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/deprecated-method-compliant2.bsl: -------------------------------------------------------------------------------- 1 | #Region Internal 2 | 3 | #Region Deprecated 4 | 5 | // Deprecated. Instead, use SupportedProcedure 6 | Procedure DeprecatedProcedure() Export 7 | 8 | DeprecatedProcedure() 9 | 10 | EndProcedure 11 | 12 | #EndRegion 13 | 14 | #EndRegion -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/deprecated-method-non-compliant.bsl: -------------------------------------------------------------------------------- 1 | #Region Public 2 | 3 | // Deprecated. Instead, use SupportedProcedure 4 | Procedure DeprecatedProcedure() Export 5 | 6 | DeprecatedProcedure() 7 | 8 | EndProcedure 9 | 10 | #EndRegion -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/doc-comment-description-ends-on-dot.bsl: -------------------------------------------------------------------------------- 1 | 2 | // First line 3 | // second line 4 | Procedure NonComplaint() Export 5 | // empty 6 | EndProcedure 7 | 8 | // First line 9 | // second line. 10 | Procedure Complaint() Export 11 | // empty 12 | EndProcedure 13 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/empty-lines.bsl: -------------------------------------------------------------------------------- 1 | Procedure MyCorrectProcedureBeforeAfter(Param) Export 2 | 3 | 4 | If Param > 10 Then 5 | 6 | Param = 0; 7 | 8 | EndIf 9 | 10 | EndProcedure -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/export-procedure-no-comment.bsl: -------------------------------------------------------------------------------- 1 | #Region Public 2 | 3 | Procedure ExportProcedureWithoutComment() Export 4 | ExportProcedureWithoutComment() 5 | EndProcedure 6 | 7 | #EndRegion -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/form-module-missing-pragma.bsl: -------------------------------------------------------------------------------- 1 | 2 | Var NoncompliantVariable; 3 | 4 | &AtClient 5 | Var CompliantVariable; 6 | 7 | Procedure Noncompliant() 8 | 9 | EndProcedure 10 | 11 | &AtClient 12 | Procedure Compliant() 13 | 14 | EndProcedure 15 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/form-module-pragma.bsl: -------------------------------------------------------------------------------- 1 | 2 | &AtClient 3 | Procedure Noncompliant() 4 | 5 | EndProcedure 6 | 7 | Procedure Compliant() 8 | 9 | EndProcedure 10 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/isinrole-method.bsl: -------------------------------------------------------------------------------- 1 | Процедура Тест() 2 | 3 | Если РольДоступна("ИмяРоли") Тогда 4 | // 5 | КонецЕсли 6 | 7 | КонецПроцедуры -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/module-empty-method.bsl: -------------------------------------------------------------------------------- 1 | Procedure BeforeExit(Cancel, WarningText) 2 | i = 0; 3 | i = i + 1; 4 | EndProcedure 5 | 6 | Procedure ModuleEmptyMethodCheck() 7 | 8 | EndProcedure 9 | 10 | &AtClient 11 | // 12 | Procedure Command1(Command) 13 | 14 | EndProcedure 15 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/module-structure.bsl: -------------------------------------------------------------------------------- 1 | 2 | #If Server Or ThickClientOrdinaryApplication Or ExternalConnection Then 3 | 4 | #Region Public 5 | 6 | Procedure Test1() 7 | 8 | EndProcedure 9 | 10 | #EndRegion 11 | 12 | #EndIf 13 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/module-unused-local-variable.bsl: -------------------------------------------------------------------------------- 1 | Procedure BeforeExit(Cancel, WarningText) 2 | 3 | ModuleUnusedMethodCheck(); 4 | 5 | EndProcedure 6 | 7 | Procedure ModuleUnusedMethodCheck() 8 | 9 | i = 0; 10 | 11 | EndProcedure 12 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/module-unused-method.bsl: -------------------------------------------------------------------------------- 1 | Procedure BeforeExit(Cancel, WarningText) 2 | i = 0; 3 | i = i + 1; 4 | EndProcedure 5 | 6 | Procedure ModuleUnusedMethodCheck() 7 | i = 0; 8 | i = i + 1; 9 | EndProcedure 10 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/new-color.bsl: -------------------------------------------------------------------------------- 1 | Процедура Тест() 2 | 3 | color = new Color(0,0,0); 4 | 5 | КонецПроцедуры -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/new-color2.bsl: -------------------------------------------------------------------------------- 1 | Procedure Test() 2 | 3 | Param = new Array(3); 4 | Param[0] = 200; 5 | Param[1] = 100; 6 | Param[2] = 100; 7 | 8 | color = new (Type("Color"), Param); 9 | 10 | EndProcedure -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/new-color3.bsl: -------------------------------------------------------------------------------- 1 | Процедура Тест() 2 | 3 | name = "Color"; 4 | color2 = new (name); 5 | 6 | КонецПроцедуры -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/new-color4.bsl: -------------------------------------------------------------------------------- 1 | Процедура Тест() 2 | 3 | color = new ("Цвет"); 4 | 5 | КонецПроцедуры -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/new-font.bsl: -------------------------------------------------------------------------------- 1 | Процедура Тест() 2 | 3 | font = new Font(, 1, True, True, False, True, 100); 4 | 5 | КонецПроцедуры -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/new-font2.bsl: -------------------------------------------------------------------------------- 1 | Procedure Test() 2 | 3 | Param = new Array(3); 4 | Param[0] = 200; 5 | Param[1] = 100; 6 | Param[2] = 100; 7 | 8 | font = new (Type("Font"), Param); 9 | 10 | EndProcedure -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/new-font3.bsl: -------------------------------------------------------------------------------- 1 | Процедура Тест() 2 | 3 | font = new ("Font"); 4 | 5 | КонецПроцедуры -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/non-public-export-procedure-no-comment.bsl: -------------------------------------------------------------------------------- 1 | #Region Internal 2 | 3 | Procedure ExportProcedureWithoutComment() Export 4 | ExportProcedureWithoutComment() 5 | EndProcedure 6 | 7 | #EndRegion -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/not-found-try-after-begin.bsl: -------------------------------------------------------------------------------- 1 | Процедура Тест() 2 | 3 | НачатьТранзакцию(); 4 | 5 | КонецПроцедуры -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/nstr-format/compliant.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure Compliant(Message) Export 3 | 4 | Message = NStr("en = 'User message'"); 5 | 6 | EndProcedure 7 | 8 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/nstr-format/non-compliant-1.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure NonCompliant1(Message) Export 3 | 4 | Message = NStr("en = 'User message'" + Chars.LF); 5 | 6 | EndProcedure 7 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/nstr-format/non-compliant-2.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure NonCompliant2(Message) Export 3 | 4 | Message = NStr(""); 5 | 6 | EndProcedure 7 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/nstr-format/non-compliant-3.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure NonCompliant3(Message) Export 3 | 4 | Message = NStr("en = User message"); 5 | 6 | EndProcedure 7 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/nstr-format/non-compliant-4.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure NonCompliant4(Message) Export 3 | 4 | Message = NStr("en2 = 'User message'"); 5 | 6 | EndProcedure 7 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/nstr-format/non-compliant-5.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure NonCompliant5(Message) Export 3 | 4 | Message = NStr("en = ''"); 5 | 6 | EndProcedure 7 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/nstr-format/non-compliant-6.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure NonCompliant6(Message) Export 3 | 4 | Message = NStr("en = 'User message '"); 5 | 6 | EndProcedure 7 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/nstr-format/non-compliant-7.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure NonCompliant7(Message) Export 3 | 4 | Message = NStr("en = 'User message 5 | |'"); 6 | 7 | EndProcedure 8 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/object-module-export-variable.bsl: -------------------------------------------------------------------------------- 1 | #Если Сервер Или ТолстыйКлиентОбычноеПриложение Или ВнешнееСоединение Тогда 2 | 3 | Перем А Экспорт; 4 | 5 | #Иначе 6 | ВызватьИсключение НСтр("ru = 'Недопустимый вызов объекта на клиенте.'"); 7 | #КонецЕсли -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/one-empty-line.bsl: -------------------------------------------------------------------------------- 1 | Procedure MyCorrectProcedureBeforeAfter(Param) Export 2 | 3 | If Param > 10 Then 4 | 5 | Param = 0; 6 | 7 | EndIf 8 | 9 | EndProcedure -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/query-in-loop-infinite.bsl: -------------------------------------------------------------------------------- 1 | Procedure WhileStatementInfiniteLoop(SomeArray) Export 2 | 3 | Query = New Query; 4 | 5 | Query.Text = 6 | "SELECT 7 | | 1"; 8 | 9 | While True Do 10 | Query.ExecuteBatchWithIntermediateData(); 11 | EndDo; 12 | 13 | EndProcedure -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/read-single-property-bsl-non-compliant.bsl: -------------------------------------------------------------------------------- 1 | // Parameters: 2 | // Object - CatalogRef.Catalog - 3 | // 4 | // Returns: 5 | // String - 6 | Function NoneComliant(Object) 7 | 8 | return Object.Code; 9 | 10 | EndFunction 11 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/read-single-property-db-non-compliant.bsl: -------------------------------------------------------------------------------- 1 | Function getCode(CatalogRef) 2 | 3 | return Catalogs.Catalog.GetRef().Code; 4 | 5 | EndFunction -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/read-single-property-simple-type.bsl: -------------------------------------------------------------------------------- 1 | // Parameters: 2 | // Object - String - 3 | // 4 | // Returns: 5 | // String - 6 | Function NoneComliant(Object) 7 | 8 | return Object.Code; 9 | 10 | EndFunction 11 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/region-empty-after.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region NotEmpty 3 | 4 | Procedure Test() 5 | 6 | EndProcedure 7 | 8 | #EndRegion 9 | 10 | #Region Empty 11 | 12 | 13 | #EndRegion 14 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/region-empty-before.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region Empty 3 | 4 | #EndRegion 5 | 6 | #Region NotEmpty 7 | 8 | Procedure Test() 9 | 10 | EndProcedure 11 | 12 | #EndRegion 13 | 14 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/region-empty-sub-region.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region NotEmpty 3 | 4 | #Region Empty 5 | 6 | #EndRegion 7 | 8 | #EndRegion 9 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/region-empty.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region Empty 3 | 4 | #EndRegion 5 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/region-not-empty.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region NotEmpty 3 | 4 | Procedure Test() 5 | 6 | EndProcedure 7 | 8 | #EndRegion 9 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/strict/method-param-value-type.bsl: -------------------------------------------------------------------------------- 1 | // @strict-types 2 | 3 | Procedure NonComplaint(Parameters) Export 4 | // empty 5 | EndProcedure 6 | 7 | // Parameters: 8 | // Parameters - String 9 | Procedure Complaint(Parameters) Export 10 | // empty 11 | EndProcedure 12 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/use-goto-operator.bsl: -------------------------------------------------------------------------------- 1 | Процедура ТестоваяПроцедура1() 2 | 3 | Перейти ~КудаПерейти; 4 | 5 | ~МеткаПервая: 6 | ТестоваяПеременная = 1; 7 | 8 | КонецПроцедуры -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/use-non-recommended-method-find.bsl: -------------------------------------------------------------------------------- 1 | Function FunctionName(Parameters) Export 2 | Return Find("Test with word", "word"); 3 | EndFunction -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/use-non-recommended-methods.bsl: -------------------------------------------------------------------------------- 1 | Function functionName(Parameters) Export 2 | Message("Test"); 3 | date = CurrentDate(); 4 | CommonForm1 = GetForm("CommonForm.CommonForm1"); 5 | 6 | Return date; 7 | EndFunction -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/resources/using-form-data-to-value.bsl: -------------------------------------------------------------------------------- 1 | Procedure NonCompliant() 2 | SignaturesTable = FormDataToValue(SignaturesTable, Type("ValueTable")); 3 | EndProcedure 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/AccessibilityAtClient/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/AccessibilityAtClient/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/AccessibilityAtClient/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/AccessibilityAtClient/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CachedPublicCheck/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CachedPublicCheck/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CachedPublicCheck/src/CommonModules/CommonModule/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region Public 3 | 4 | Procedure GetData() Export 5 | 6 | EndProcedure 7 | 8 | #EndRegion -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CachedPublicCheck/src/CommonModules/CommonModuleCached/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region Public 3 | 4 | Procedure GetData() Export 5 | 6 | EndProcedure 7 | 8 | #EndRegion -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CachedPublicCheck/src/CommonModules/CommonModuleCachedCompliant/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region Internal 3 | 4 | Procedure GetData() Export 5 | 6 | EndProcedure 7 | 8 | #EndRegion -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CachedPublicCheck/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CachedPublicCheck/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CanonicalPragmaExtension/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CanonicalPragmaExtension/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | Base-Project: CommonModule 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CanonicalPragmaExtension/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CanonicalPragmaExtension/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CatalogModules/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CatalogModules/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CatalogModules/src/Catalogs/TestCatalog/ManagerModule.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/tests/com.e1c.v8codestyle.bsl.itests/workspace/CatalogModules/src/Catalogs/TestCatalog/ManagerModule.bsl -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CatalogModules/src/Catalogs/TestCatalog/ObjectModule.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/tests/com.e1c.v8codestyle.bsl.itests/workspace/CatalogModules/src/Catalogs/TestCatalog/ObjectModule.bsl -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CatalogModules/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CatalogModules/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ChangeAndValidateInsteadOfAroundExtension/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ChangeAndValidateInsteadOfAroundExtension/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | Base-Project: CommonModule 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ChangeAndValidateInsteadOfAroundExtension/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ChangeAndValidateInsteadOfAroundExtension/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonForm/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonForm/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonForm/src/CommonForms/Form/Module.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonForm/src/CommonForms/Form/Module.bsl -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonForm/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonForm/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonModule/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonModule/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonModule/src/CommonModules/CommonModule/Module.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonModule/src/CommonModules/CommonModule/Module.bsl -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonModule/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonModule/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonModuleNamedSelfReferenceCheck/.settings/com.e1c.v8codestyle.autosort.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | topObjects=true 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonModuleNamedSelfReferenceCheck/.settings/com.e1c.v8codestyle.bsl.prefs: -------------------------------------------------------------------------------- 1 | addModuleStrictTypesAnnotation=false 2 | createModuleStructure=false 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonModuleNamedSelfReferenceCheck/.settings/com.e1c.v8codestyle.prefs: -------------------------------------------------------------------------------- 1 | commonChecks=true 2 | eclipse.preferences.version=1 3 | standardChecks=true 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonModuleNamedSelfReferenceCheck/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonModuleNamedSelfReferenceCheck/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonModuleNamedSelfReferenceCheck/src/CommonModules/MyCommonModule/Module.bsl: -------------------------------------------------------------------------------- 1 | Функция МояФункция() экспорт 2 | Возврат 1; 3 | КонецФункции 4 | 5 | Процедура Тест1() 6 | MyCommonModule.МойРеквизит = MyCommonModule.МояФункция(); 7 | КонецПроцедуры -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonModuleNamedSelfReferenceCheck/src/CommonModules/MyCommonModuleCached/Module.bsl: -------------------------------------------------------------------------------- 1 | Функция МояФункция() экспорт 2 | Возврат 1; 3 | КонецФункции 4 | 5 | Процедура Тест1() 6 | MyCommonModuleCached.МойРеквизит = MyCommonModuleCached.МояФункция(); 7 | КонецПроцедуры 8 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonModuleNamedSelfReferenceCheck/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/CommonModuleNamedSelfReferenceCheck/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ConsecutiveEmptyLines/.settings/Default.cset: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "settings": { 4 | "module-consecutive-blank-lines": { 5 | "enabled": true 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ConsecutiveEmptyLines/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ConsecutiveEmptyLines/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ConsecutiveEmptyLines/src/CommonModules/CommonModule/Module.bsl: -------------------------------------------------------------------------------- 1 | Procedure Test() 2 | 3 | A1 = 1; 4 | 5 | 6 | A2 = 2; 7 | 8 | EndProcedure 9 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ConsecutiveEmptyLines/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ConsecutiveEmptyLines/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/EventDataExchangeLoadCheck/.settings/com.e1c.v8codestyle.autosort.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | topObjects=true 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/EventDataExchangeLoadCheck/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/EventDataExchangeLoadCheck/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/EventDataExchangeLoadCheck/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/EventDataExchangeLoadCheck/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/EventHandlerBooleanParam/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/EventHandlerBooleanParam/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/EventHandlerBooleanParam/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/EventHandlerBooleanParam/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExcessExportCheck/.settings/Default.cset: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "settings": { 4 | "redundant-export-method": { 5 | "enabled": true 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExcessExportCheck/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExcessExportCheck/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExcessExportCheck/src/Catalogs/Catalog/ObjectModule.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure Test() Export 3 | // 4 | EndProcedure 5 | 6 | Procedure Test2() 7 | Test(); 8 | EndProcedure -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExcessExportCheck/src/CommonModules/CallNoPublic/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure Compliant() Export 3 | // 4 | EndProcedure -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExcessExportCheck/src/CommonModules/NoCallNoPublic/Module.bsl: -------------------------------------------------------------------------------- 1 | Procedure NonCompliant() Export 2 | CallNoPublic.Compliant(); 3 | EndProcedure -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExcessExportCheck/src/CommonModules/NoCallPublic/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region Public 3 | 4 | Procedure Compliant() Export 5 | CallNoPublic.Compliant(); 6 | EndProcedure 7 | 8 | #EndRegion 9 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExcessExportCheck/src/CommonModules/isEventSubscription/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure EventSubscriptionFormGetProcessing(Source, FormType, Parameters, SelectedForm, AdditionalInformation, StandardProcessing) Export 3 | // TODO: Insert handler code. 4 | EndProcedure -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExcessExportCheck/src/CommonModules/isScheduledJob/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure ScheduledJob() Export 3 | // Insert hanlder code. 4 | EndProcedure 5 | 6 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExcessExportCheck/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExcessExportCheck/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExportMethodInCommandFormModuleCheck/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExportMethodInCommandFormModuleCheck/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExportMethodInCommandFormModuleCheck/src/Catalogs/Products/Commands/TestCommand/CommandModule.bsl: -------------------------------------------------------------------------------- 1 | 2 | &AtClient 3 | Procedure CommandProcessing(CommandParameter, CommandExecuteParameters) Export 4 | EndProcedure 5 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExportMethodInCommandFormModuleCheck/src/Catalogs/Products/Forms/ItemForm/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | &AtServer 3 | Procedure Test() Export 4 | 5 | EndProcedure -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExportMethodInCommandFormModuleCheck/src/CommonCommands/CommonCommand/CommandModule.bsl: -------------------------------------------------------------------------------- 1 | 2 | &AtClient 3 | Procedure CommandProcessing(CommandParameter, CommandExecuteParameters) Export 4 | EndProcedure 5 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExportMethodInCommandFormModuleCheck/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExportMethodInCommandFormModuleCheck/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionMethodPrefixCheck/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionMethodPrefixCheck/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionMethodPrefixCheck/src/CommonModules/CommonModule/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure NonComplient() 3 | EndProcedure -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionMethodPrefixCheck/src/CommonModules/CompliantCommonModule/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure Complient() 3 | EndProcedure -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionMethodPrefixCheck/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionMethodPrefixCheck/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionMethodPrefixCheck_Extension/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionMethodPrefixCheck_Extension/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | Base-Project: ExtensionMethodPrefixCheck 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionMethodPrefixCheck_Extension/src/CommonModules/CommonModule/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | &Before("NonComplient") 3 | Procedure Ext_NonComplient() 4 | //TODO: Insert the handler content 5 | EndProcedure 6 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionMethodPrefixCheck_Extension/src/CommonModules/CompliantCommonModule/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | &After("Complient") 3 | Procedure Ext1_Complient() 4 | //TODO: Insert the handler content 5 | EndProcedure 6 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionMethodPrefixCheck_Extension/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionMethodPrefixCheck_Extension/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionVariablePrefixCheck/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionVariablePrefixCheck/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionVariablePrefixCheck/src/CommonForms/Form/Module.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionVariablePrefixCheck/src/CommonForms/Form/Module.bsl -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionVariablePrefixCheck/src/CommonModules/CommonModule/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure NonComplient() 3 | 4 | VariableNonComplient = True; 5 | 6 | EndProcedure -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionVariablePrefixCheck/src/CommonModules/CompliantCommonModule/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure Complient() 3 | Variable = True; 4 | EndProcedure -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionVariablePrefixCheck/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionVariablePrefixCheck/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionVariablePrefixCheck_Extension/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionVariablePrefixCheck_Extension/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | Base-Project: ExtensionVariablePrefixCheck 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionVariablePrefixCheck_Extension/src/Catalogs/Catalog/Forms/ItemForm/Module.bsl: -------------------------------------------------------------------------------- 1 | Var Variable1; -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionVariablePrefixCheck_Extension/src/CommonForms/Form/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure Test() 3 | Var Perem; 4 | EndProcedure 5 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionVariablePrefixCheck_Extension/src/CommonModules/CommonModule/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | &After("NonComplient") 3 | Procedure Ext1_NonComplient() 4 | Variable = 1; 5 | EndProcedure 6 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionVariablePrefixCheck_Extension/src/CommonModules/CompliantCommonModule/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | &After("Complient") 3 | Procedure Ext1_Complient() 4 | Variable = True; 5 | EndProcedure 6 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionVariablePrefixCheck_Extension/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ExtensionVariablePrefixCheck_Extension/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/FormSelfReferenceOutdatedCheck/.settings/com.e1c.v8codestyle.autosort.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | topObjects=true 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/FormSelfReferenceOutdatedCheck/.settings/com.e1c.v8codestyle.bsl.prefs: -------------------------------------------------------------------------------- 1 | addModuleStrictTypesAnnotation=false 2 | createModuleStructure=false 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/FormSelfReferenceOutdatedCheck/.settings/com.e1c.v8codestyle.prefs: -------------------------------------------------------------------------------- 1 | commonChecks=true 2 | eclipse.preferences.version=1 3 | standardChecks=true 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/FormSelfReferenceOutdatedCheck/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/FormSelfReferenceOutdatedCheck/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/FormSelfReferenceOutdatedCheck/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/FormSelfReferenceOutdatedCheck/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/InvocationFormEventHandler/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/InvocationFormEventHandler/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/InvocationFormEventHandler/src/Catalogs/Products/Forms/ItemForm/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | &AtClient 3 | Procedure OnOpen(Cancel) 4 | EndProcedure 5 | 6 | &AtClient 7 | Procedure OnClose(Exit) 8 | OnOpen(Exit); 9 | EndProcedure 10 | 11 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/InvocationFormEventHandler/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/InvocationFormEventHandler/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/IsInRoleMethodRoleExist/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/IsInRoleMethodRoleExist/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/IsInRoleMethodRoleExist/src/CommonModules/Users/Module.bsl: -------------------------------------------------------------------------------- 1 | Function RolesAvailable(RolesNames, User = Undefined, ForPrivilegedMode = True) Export 2 | //Some checks 3 | Return True; 4 | EndFunction 5 | 6 | Function IsFullUser(User = Undefined) Export 7 | Return True; 8 | EndFunction -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/IsInRoleMethodRoleExist/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/IsInRoleMethodRoleExist/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ManagerModuleNamedSelfReferenceCheck/.settings/com.e1c.v8codestyle.autosort.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | topObjects=true 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ManagerModuleNamedSelfReferenceCheck/.settings/com.e1c.v8codestyle.bsl.prefs: -------------------------------------------------------------------------------- 1 | addModuleStrictTypesAnnotation=false 2 | createModuleStructure=false 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ManagerModuleNamedSelfReferenceCheck/.settings/com.e1c.v8codestyle.prefs: -------------------------------------------------------------------------------- 1 | commonChecks=true 2 | eclipse.preferences.version=1 3 | standardChecks=true 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ManagerModuleNamedSelfReferenceCheck/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ManagerModuleNamedSelfReferenceCheck/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ManagerModuleNamedSelfReferenceCheck/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ManagerModuleNamedSelfReferenceCheck/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureEventFormRegionsCheck/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureEventFormRegionsCheck/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureEventFormRegionsCheck/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureEventFormRegionsCheck/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureInitCodeInRegion/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureInitCodeInRegion/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureInitCodeInRegion/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureInitCodeInRegion/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureMethodInRegionCheck/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureMethodInRegionCheck/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureMethodInRegionCheck/src/Catalogs/CatalogOutOfRegion/Forms/ItemForm/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure UnComplient() 3 | 4 | EndProcedure -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureMethodInRegionCheck/src/CommonModules/CommonModulMultiLevel/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region Public 3 | 4 | #Region SecondLevel 5 | 6 | #EndRegion 7 | 8 | Procedure Complient() Export 9 | 10 | EndProcedure 11 | 12 | #EndRegion 13 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureMethodInRegionCheck/src/CommonModules/CommonModuleAfterRegion/Module.bsl: -------------------------------------------------------------------------------- 1 | #Region Public 2 | 3 | #EndRegion 4 | 5 | Procedure NonComplient() 6 | 7 | EndProcedure -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureMethodInRegionCheck/src/CommonModules/CommonModuleExportInRegion/Module.bsl: -------------------------------------------------------------------------------- 1 | #Region Public 2 | 3 | Procedure Complient() Export 4 | 5 | EndProcedure 6 | 7 | #EndRegion 8 | 9 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureMethodInRegionCheck/src/CommonModules/CommonModuleInNonInterfaceRegion/Module.bsl: -------------------------------------------------------------------------------- 1 | #Region NonComplient 2 | 3 | Procedure NonComplient() Export 4 | 5 | EndProcedure 6 | 7 | #EndRegion 8 | 9 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureMethodInRegionCheck/src/CommonModules/CommonModuleInRegion/Module.bsl: -------------------------------------------------------------------------------- 1 | #Region Public 2 | 3 | Procedure NonComplient() 4 | 5 | EndProcedure 6 | 7 | #EndRegion 8 | 9 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureMethodInRegionCheck/src/CommonModules/CommonModuleMultiLevel1/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | #Region Public 3 | 4 | #Region SecondLevel 5 | 6 | Procedure NonComplient() Export 7 | 8 | EndProcedure 9 | 10 | #EndRegion 11 | 12 | #EndRegion -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureMethodInRegionCheck/src/CommonModules/CommonModuleNoRegion/Module.bsl: -------------------------------------------------------------------------------- 1 | Procedure NonComplient() 2 | 3 | EndProcedure -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureMethodInRegionCheck/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureMethodInRegionCheck/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureTopRegionCheck/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureTopRegionCheck/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureTopRegionCheck/src/Catalogs/Catalog/ManagerModule.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureTopRegionCheck/src/Catalogs/Catalog/ManagerModule.bsl -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureTopRegionCheck/src/CommonModules/CommonModule/Module.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureTopRegionCheck/src/CommonModules/CommonModule/Module.bsl -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureTopRegionCheck/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureTopRegionCheck/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureVariablesInRegionCheck/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureVariablesInRegionCheck/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureVariablesInRegionCheck/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ModuleStructureVariablesInRegionCheck/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/OptionalFormParameterAccess/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/OptionalFormParameterAccess/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/OptionalFormParameterAccess/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/OptionalFormParameterAccess/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/SelfReferenceCheck/.settings/Default.cset: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "settings": {} 4 | } -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/SelfReferenceCheck/.settings/com.e1c.g5.v8.dt.formatter.bsl.prefs: -------------------------------------------------------------------------------- 1 | defaultValuesInitialized=true 2 | eclipse.preferences.version=1 3 | projectSpecificSettingsInited=true 4 | showWhitespaceCharacters=false 5 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/SelfReferenceCheck/.settings/com.e1c.v8codestyle.autosort.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | topObjects=true 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/SelfReferenceCheck/.settings/com.e1c.v8codestyle.bsl.prefs: -------------------------------------------------------------------------------- 1 | addModuleStrictTypesAnnotation=false 2 | createModuleStructure=false 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/SelfReferenceCheck/.settings/com.e1c.v8codestyle.prefs: -------------------------------------------------------------------------------- 1 | commonChecks=true 2 | eclipse.preferences.version=1 3 | standardChecks=true 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/SelfReferenceCheck/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/SelfReferenceCheck/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/SelfReferenceCheck/src/Catalogs/Products/ManagerModule.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/tests/com.e1c.v8codestyle.bsl.itests/workspace/SelfReferenceCheck/src/Catalogs/Products/ManagerModule.bsl -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/SelfReferenceCheck/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/SelfReferenceCheck/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ServerExecutionSafeModeCheck/.settings/com.e1c.v8codestyle.autosort.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | topObjects=true 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ServerExecutionSafeModeCheck/.settings/com.e1c.v8codestyle.bsl.prefs: -------------------------------------------------------------------------------- 1 | addModuleStrictTypesAnnotation=false 2 | createModuleStructure=false 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ServerExecutionSafeModeCheck/.settings/com.e1c.v8codestyle.prefs: -------------------------------------------------------------------------------- 1 | commonChecks=true 2 | eclipse.preferences.version=1 3 | standardChecks=true 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ServerExecutionSafeModeCheck/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ServerExecutionSafeModeCheck/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ServerExecutionSafeModeCheck/src/CommonModules/CommonModule/Module.bsl: -------------------------------------------------------------------------------- 1 | Функция Тест() 2 | Код = "Рез = 1 + 1"; 3 | Выполнить(Код); 4 | а = 1 + Вычислить(Код); 5 | КонецФункции -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ServerExecutionSafeModeCheck/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/ServerExecutionSafeModeCheck/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/StructureModule/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/StructureModule/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/StructureModule/src/Catalogs/CatalogInRegion/ObjectModule.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/tests/com.e1c.v8codestyle.bsl.itests/workspace/StructureModule/src/Catalogs/CatalogInRegion/ObjectModule.bsl -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/StructureModule/src/Catalogs/CatalogInRegionWrongMethod/ObjectModule.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/tests/com.e1c.v8codestyle.bsl.itests/workspace/StructureModule/src/Catalogs/CatalogInRegionWrongMethod/ObjectModule.bsl -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/StructureModule/src/Catalogs/CatalogInWrongRegion/ObjectModule.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/tests/com.e1c.v8codestyle.bsl.itests/workspace/StructureModule/src/Catalogs/CatalogInWrongRegion/ObjectModule.bsl -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/StructureModule/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/StructureModule/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/UnknownFormParameterAccess/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/UnknownFormParameterAccess/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/UnknownFormParameterAccess/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.itests/workspace/UnknownFormParameterAccess/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.ui.itests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.ui.itests/resources/doc-comment-format-result.bsl: -------------------------------------------------------------------------------- 1 | 2 | // Method description 3 | // 4 | // Parameters: 5 | // Parameters - Structure - : 6 | // * Key1 - has not type for key 7 | Procedure Test(Parameters) Export 8 | // empty 9 | EndProcedure 10 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.ui.itests/resources/doc-comment-format.bsl: -------------------------------------------------------------------------------- 1 | 2 | // Method description 3 | // 4 | // 5 | // 6 | // Parameters: 7 | // Parameters - Structure: 8 | // * Key1 - has not type for key 9 | Procedure Test(Parameters) Export 10 | // empty 11 | EndProcedure 12 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.ui.itests/workspace/CommonModule/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.ui.itests/workspace/CommonModule/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.ui.itests/workspace/CommonModule/src/CommonModules/CommonModule/Module.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dminik1C/v8-code-style/2afdf4580d3b4847b665b94cbb1a72f3089be795/tests/com.e1c.v8codestyle.bsl.ui.itests/workspace/CommonModule/src/CommonModules/CommonModule/Module.bsl -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.ui.itests/workspace/CommonModule/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.bsl.ui.itests/workspace/CommonModule/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/DataCompositionConditionalAppearanceUse/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/DataCompositionConditionalAppearanceUse/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/DataCompositionConditionalAppearanceUse/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/DataCompositionConditionalAppearanceUse/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormCommandsSingleEventHandlerCheck/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormCommandsSingleEventHandlerCheck/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormCommandsSingleEventHandlerCheck/src/Catalogs/Catalog/Forms/NonCompliantForm/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | &AtClient 3 | Procedure Command1(Command) 4 | //TODO: Insert the handler content 5 | EndProcedure 6 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormCommandsSingleEventHandlerCheck/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormCommandsSingleEventHandlerCheck/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormDynamicListItemTitle/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormDynamicListItemTitle/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormDynamicListItemTitle/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormDynamicListItemTitle/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormItemVisibleSettingsByRoles/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormItemVisibleSettingsByRoles/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormItemVisibleSettingsByRoles/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormItemsSingleEventHandler/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormItemsSingleEventHandler/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormItemsSingleEventHandler/src/CommonForms/TestFormWithIssue/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | &AtClient 3 | Procedure Attribute1StartListChoice(Item, StandardProcessing) 4 | //TODO: Insert the handler content 5 | EndProcedure 6 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormItemsSingleEventHandler/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormItemsSingleEventHandler/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListFieldRefNotAdded/.settings/com.e1c.v8codestyle.autosort.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | topObjects=true 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListFieldRefNotAdded/.settings/com.e1c.v8codestyle.bsl.prefs: -------------------------------------------------------------------------------- 1 | addModuleStrictTypesAnnotation=false 2 | createModuleStructure=false 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListFieldRefNotAdded/.settings/com.e1c.v8codestyle.prefs: -------------------------------------------------------------------------------- 1 | commonChecks=true 2 | eclipse.preferences.version=1 3 | standardChecks=true 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListFieldRefNotAdded/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListFieldRefNotAdded/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListFieldRefNotAdded/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListFieldRefNotAdded/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListRefUseAlwaysFlagDisabled/.settings/com.e1c.v8codestyle.autosort.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | topObjects=true 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListRefUseAlwaysFlagDisabled/.settings/com.e1c.v8codestyle.bsl.prefs: -------------------------------------------------------------------------------- 1 | addModuleStrictTypesAnnotation=false 2 | createModuleStructure=false 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListRefUseAlwaysFlagDisabled/.settings/com.e1c.v8codestyle.prefs: -------------------------------------------------------------------------------- 1 | commonChecks=true 2 | eclipse.preferences.version=1 3 | standardChecks=true 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListRefUseAlwaysFlagDisabled/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListRefUseAlwaysFlagDisabled/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListRefUseAlwaysFlagDisabled/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListRefUseAlwaysFlagDisabled/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListRefUserVisibilityEnabled/.settings/com.e1c.v8codestyle.autosort.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | topObjects=true 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListRefUserVisibilityEnabled/.settings/com.e1c.v8codestyle.bsl.prefs: -------------------------------------------------------------------------------- 1 | addModuleStrictTypesAnnotation=false 2 | createModuleStructure=false 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListRefUserVisibilityEnabled/.settings/com.e1c.v8codestyle.prefs: -------------------------------------------------------------------------------- 1 | commonChecks=true 2 | eclipse.preferences.version=1 3 | standardChecks=true 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListRefUserVisibilityEnabled/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListRefUserVisibilityEnabled/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListRefUserVisibilityEnabled/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/FormListRefUserVisibilityEnabled/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/InputFieldListChoiceMode/.settings/com.e1c.v8codestyle.autosort.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | topObjects=true 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/InputFieldListChoiceMode/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/InputFieldListChoiceMode/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/InputFieldListChoiceMode/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.form.itests/workspace/InputFieldListChoiceMode/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/CommonModuleName/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/CommonModuleName/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/CommonModuleName/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/CommonModuleName/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/CommonModuleType/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/CommonModuleType/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/CommonModuleType/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/CommonModuleType/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/DataLock/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/DataLock/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/DataLock/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/DataLock/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/DocumentPostInPrivilegedMode/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/DocumentPostInPrivilegedMode/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/DocumentPostInPrivilegedMode/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/DocumentPostInPrivilegedMode/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/ExtensionObjectNamePrefixCheck/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/ExtensionObjectNamePrefixCheck/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/ExtensionObjectNamePrefixCheck/src/CommonModules/Compliant/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | Procedure Complient() 3 | EndProcedure -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/ExtensionObjectNamePrefixCheck/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/ExtensionObjectNamePrefixCheck/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/ExtensionObjectNamePrefixCheck_Extension/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/ExtensionObjectNamePrefixCheck_Extension/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | Base-Project: ExtensionObjectNamePrefixCheck 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/ExtensionObjectNamePrefixCheck_Extension/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/ExtensionObjectNamePrefixCheck_Extension/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/FunctionalOptionPrivilegedGetMode/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/FunctionalOptionPrivilegedGetMode/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/FunctionalOptionPrivilegedGetMode/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/FunctionalOptionPrivilegedGetMode/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdAnyRefType/.settings/com.e1c.v8codestyle.autosort.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | topObjects=true 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdAnyRefType/.settings/com.e1c.v8codestyle.bsl.prefs: -------------------------------------------------------------------------------- 1 | addModuleStrictTypesAnnotation=false 2 | createModuleStructure=false 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdAnyRefType/.settings/com.e1c.v8codestyle.prefs: -------------------------------------------------------------------------------- 1 | commonChecks=true 2 | eclipse.preferences.version=1 3 | standardChecks=true 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdAnyRefType/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdAnyRefType/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdAnyRefType/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdAnyRefType/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdCompositeTypeCheck/.settings/com.e1c.v8codestyle.autosort.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | topObjects=true 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdCompositeTypeCheck/.settings/com.e1c.v8codestyle.bsl.prefs: -------------------------------------------------------------------------------- 1 | addModuleStrictTypesAnnotation=false 2 | createModuleStructure=false 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdCompositeTypeCheck/.settings/com.e1c.v8codestyle.prefs: -------------------------------------------------------------------------------- 1 | commonChecks=true 2 | eclipse.preferences.version=1 3 | standardChecks=true 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdCompositeTypeCheck/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdCompositeTypeCheck/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdCompositeTypeCheck/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdCompositeTypeCheck/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdListObjectPresentation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdListObjectPresentation/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdListObjectPresentation/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdListObjectPresentation/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdNumberMaxLength/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdNumberMaxLength/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdNumberMaxLength/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdNumberMaxLength/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectAttributeComment/.settings/Default.cset: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "settings": { 4 | "md-object-attribute-comment-incorrect-type": { 5 | "properties": { 6 | "checkCatalogs": "true" 7 | } 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectAttributeComment/.settings/com.e1c.v8codestyle.autosort.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | topObjects=true 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectAttributeComment/.settings/com.e1c.v8codestyle.bsl.prefs: -------------------------------------------------------------------------------- 1 | addModuleStrictTypesAnnotation=false 2 | createModuleStructure=false 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectAttributeComment/.settings/com.e1c.v8codestyle.prefs: -------------------------------------------------------------------------------- 1 | commonChecks=true 2 | eclipse.preferences.version=1 3 | standardChecks=true 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectAttributeComment/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectAttributeComment/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectAttributeComment/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectAttributeComment/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectAttributeCommentNotExist/.settings/Default.cset: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "settings": { 4 | "md-object-attribute-comment-not-exist": { 5 | "properties": { 6 | "checkCatalogs": "true" 7 | } 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectAttributeCommentNotExist/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectAttributeCommentNotExist/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectAttributeCommentNotExist/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectAttributeCommentNotExist/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectNameLength/.settings/Default.cset: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "settings": { 4 | "mdo-name-length": { 5 | "properties": { 6 | "max-name-length": "12" 7 | } 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectNameLength/.settings/com._1c.g5.v8.dt.check.prefs: -------------------------------------------------------------------------------- 1 | activeProfile=Default 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectNameLength/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectNameLength/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectNameLength/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectNameLength/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectNameUnallowedLetter/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectNameUnallowedLetter/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectNameUnallowedLetter/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdObjectNameUnallowedLetter/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdScheduledJobPeriodicity/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdScheduledJobPeriodicity/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdScheduledJobPeriodicity/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdScheduledJobPeriodicity/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdStandardAttributeSynonymEmpty/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdStandardAttributeSynonymEmpty/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdStandardAttributeSynonymEmpty/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/MdStandardAttributeSynonymEmpty/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/RegisterResourcePrecision/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/RegisterResourcePrecision/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/RegisterResourcePrecision/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/RegisterResourcePrecision/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/ScheduledJobs/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/ScheduledJobs/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/ScheduledJobs/src/CommonModules/Jobs/Module.bsl: -------------------------------------------------------------------------------- 1 | 2 | 3 | Procedure PredefinedJob() Export 4 | // Insert hanlder code. 5 | EndProcedure 6 | 7 | Procedure NotPredefinedJob() Export 8 | // Insert hanlder code. 9 | EndProcedure 10 | 11 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/ScheduledJobs/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/ScheduledJobs/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/SubsystemSynonymTooLong/.settings/Default.cset: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "settings": { 4 | "subsystem-synonym-too-long": { 5 | "properties": { 6 | "subsystemSynonymLangFilter": " de" 7 | } 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/SubsystemSynonymTooLong/.settings/com.e1c.v8codestyle.autosort.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | topObjects=true 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/SubsystemSynonymTooLong/.settings/com.e1c.v8codestyle.bsl.prefs: -------------------------------------------------------------------------------- 1 | addModuleStrictTypesAnnotation=false 2 | createModuleStructure=false 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/SubsystemSynonymTooLong/.settings/com.e1c.v8codestyle.prefs: -------------------------------------------------------------------------------- 1 | commonChecks=true 2 | eclipse.preferences.version=1 3 | standardChecks=true 4 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/SubsystemSynonymTooLong/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/SubsystemSynonymTooLong/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/SubsystemSynonymTooLong/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/SubsystemSynonymTooLong/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/SubsystemSynonymTooLong/src/Subsystems/TopLongDeIncluded/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/SubsystemSynonymTooLong/src/Subsystems/TopLongEnIncluded/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/SubsystemSynonymTooLong/src/Subsystems/TopLongEnIncluded/Subsystems/SubLong/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/SubsystemSynonymTooLong/src/Subsystems/TopLongNotIncluded/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/SubsystemSynonymTooLong/src/Subsystems/TopLongRuEnDeIncluded/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/SubsystemSynonymTooLong/src/Subsystems/TopShortEnRuDe/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/UnsafePasswordStorage/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/UnsafePasswordStorage/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/UnsafePasswordStorage/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.md.itests/workspace/UnsafePasswordStorage/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/resources/temp-table-has-index.ql: -------------------------------------------------------------------------------- 1 | SELECT 2 | 1 AS Field 3 | INTO T 4 | 5 | INDEX BY 6 | Field 7 | ; 8 | 9 | //////////////////////////////////////////////////////////////////////////////// 10 | SELECT 11 | T.Field 12 | FROM 13 | T AS T -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/resources/temp-table-has-no-index-top.ql: -------------------------------------------------------------------------------- 1 | SELECT TOP 100000 2 | 1 AS Field 3 | INTO T 4 | ; 5 | 6 | //////////////////////////////////////////////////////////////////////////////// 7 | SELECT TOP 100 8 | T.Field 9 | FROM 10 | T AS T 11 | INTO T2 12 | ; -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/resources/temp-table-has-no-index.ql: -------------------------------------------------------------------------------- 1 | SELECT 2 | 1 AS Field 3 | INTO T 4 | ; 5 | 6 | //////////////////////////////////////////////////////////////////////////////// 7 | SELECT 8 | T.Field 9 | FROM 10 | T AS T -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/CastToMaxNumber/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/CastToMaxNumber/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/CastToMaxNumber/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/CastToMaxNumber/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/JoinToSubQuery/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/JoinToSubQuery/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/JoinToSubQuery/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/JoinToSubQuery/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/QlEmptyProject/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/QlEmptyProject/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/QlEmptyProject/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/QlEmptyProject/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/QlFullDemo/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/QlFullDemo/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/QlFullDemo/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/QlFullDemo/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/StringLiteralCameCase/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/StringLiteralCameCase/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/StringLiteralCameCase/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/StringLiteralCameCase/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/UsingForUpdate/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/UsingForUpdate/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/UsingForUpdate/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.ql.itests/workspace/UsingForUpdate/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.right.itests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.right.itests/workspace/RoleRightHasForbidden/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.right.itests/workspace/RoleRightHasForbidden/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.right.itests/workspace/RoleRightHasForbidden/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.right.itests/workspace/RoleRightHasForbidden/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.right.itests/workspace/RoleRightHasRls/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.right.itests/workspace/RoleRightHasRls/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.right.itests/workspace/RoleRightHasRls/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.right.itests/workspace/RoleRightHasRls/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.right.itests/workspace/StandardRoles/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.right.itests/workspace/StandardRoles/DT-INF/PROJECT.PMF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Runtime-Version: 8.3.19 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.right.itests/workspace/StandardRoles/src/Configuration/CommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/com.e1c.v8codestyle.right.itests/workspace/StandardRoles/src/Configuration/MainSectionCommandInterface.cmi: -------------------------------------------------------------------------------- 1 | 2 | 3 | --------------------------------------------------------------------------------