├── .github ├── ISSUE_TEMPLATE │ └── bug.md └── workflows │ ├── docs.yml │ ├── relator.yml │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yaml ├── .mockery.yaml ├── Docker ├── base │ └── Dockerfile ├── generator │ └── Dockerfile └── lint │ └── Dockerfile ├── LICENSE ├── README.md ├── Taskfile.yml ├── cmd └── easyp │ └── main.go ├── docs ├── dist │ ├── apple-touch-icon.png │ ├── apple-touch-icon.svg │ ├── assets │ │ ├── _basePickBy-Dm_sMLMB.js │ │ ├── _baseUniq-UvPYksec.js │ │ ├── arc-CFZlwBOQ.js │ │ ├── architectureDiagram-VXUJARFQ-B0cQz-oU.js │ │ ├── blockDiagram-VD42YOAC-CuS2rFPZ.js │ │ ├── c4Diagram-YG6GDRKO-DoDAOfmS.js │ │ ├── channel-92COyuQS.js │ │ ├── chunk-4BX2VUAB-DQFJwyRw.js │ │ ├── chunk-55IACEB6-k1CzMQx-.js │ │ ├── chunk-B4BG7PRW-BM5l_f1F.js │ │ ├── chunk-DI55MBZ5-J7umTVjb.js │ │ ├── chunk-FMBD7UC4-mpZRA3cF.js │ │ ├── chunk-QN33PNHL-Ee1tIsWT.js │ │ ├── chunk-QZHKN3VN-DPxP3j_u.js │ │ ├── chunk-TZMSLE5B-DET7R8sF.js │ │ ├── classDiagram-2ON5EDUG-B2e87Lie.js │ │ ├── classDiagram-v2-WZHVMYZB-B2e87Lie.js │ │ ├── clone-uEwA9FQU.js │ │ ├── cose-bilkent-S5V4N54A-DwegvPdd.js │ │ ├── cytoscape.esm-CF_z7lu9.js │ │ ├── dagre-6UL2VRFP-DAENmghR.js │ │ ├── defaultLocale-C4B-KCzX.js │ │ ├── diagram-PSM6KHXK-BM9fGZyn.js │ │ ├── diagram-QEK2KX5R-FYQHmCXL.js │ │ ├── diagram-S2PKOQOG-CiIQ2nC9.js │ │ ├── erDiagram-Q2GNP2WA-RPj5FPuZ.js │ │ ├── flowDiagram-NV44I4VS-kx5p1N1n.js │ │ ├── ganttDiagram-LVOFAZNH-C1uRgA1W.js │ │ ├── gitGraphDiagram-NY62KEGX-C5UcOD27.js │ │ ├── graph-B7dpUAh4.js │ │ ├── index-BtiIqbpV.js │ │ ├── index-DfEK4y8B.css │ │ ├── infoDiagram-ER5ION4S-Ba3AJNAB.js │ │ ├── init-Gi6I4Gst.js │ │ ├── journeyDiagram-XKPGCS4Q-arI6-S00.js │ │ ├── kanban-definition-3W4ZIXB7-CzDXUcaj.js │ │ ├── katex-CbqxIyal.js │ │ ├── layout-B_-UBl_B.js │ │ ├── linear-DIZeUs0A.js │ │ ├── mindmap-definition-VGOIOE7T-D_KtVAfA.js │ │ ├── ordinal-Cboi1Yqb.js │ │ ├── pieDiagram-ADFJNKIX-BCH2WNkj.js │ │ ├── prism-bash-DTkDXsAh.js │ │ ├── prism-go-CyY0RbE6.js │ │ ├── prism-json-xwnKirkR.js │ │ ├── prism-protobuf-DiQ_z8B5.js │ │ ├── prism-yaml-Chm5ZdEN.js │ │ ├── quadrantDiagram-AYHSOK5B-BrYUoIUK.js │ │ ├── requirementDiagram-UZGBJVZJ-Cyv_arKH.js │ │ ├── sankeyDiagram-TZEHDZUN-D-pyaHYp.js │ │ ├── sequenceDiagram-WL72ISMW-Dh5e4L85.js │ │ ├── stateDiagram-FKZM4ZOC-C2mlkll6.js │ │ ├── stateDiagram-v2-4FDKWEC3-BaoOWtKj.js │ │ ├── timeline-definition-IT6M3QCI-Czw3v9K4.js │ │ ├── treemap-KMMF4GRG-BdBrUw5q.js │ │ └── xychartDiagram-PRI3JC2R-mB92NfON.js │ ├── docs │ │ ├── blog │ │ │ ├── finally-give-up-gin-echo.md │ │ │ └── working-with-proto-errors-correctly.md │ │ ├── guide │ │ │ ├── api-service │ │ │ │ └── overview.md │ │ │ ├── ci-cd │ │ │ │ ├── github-actions.md │ │ │ │ └── gitlab.md │ │ │ ├── cli │ │ │ │ ├── auto-completion │ │ │ │ │ └── auto-completion.md │ │ │ │ ├── breaking-changes │ │ │ │ │ ├── breaking-changes.md │ │ │ │ │ └── rules │ │ │ │ │ │ ├── enum-no-delete.md │ │ │ │ │ │ ├── enum-value-no-delete.md │ │ │ │ │ │ ├── enum-value-same-name.md │ │ │ │ │ │ ├── field-no-delete.md │ │ │ │ │ │ ├── field-same-cardinality.md │ │ │ │ │ │ ├── field-same-type.md │ │ │ │ │ │ ├── import-no-delete.md │ │ │ │ │ │ ├── message-no-delete.md │ │ │ │ │ │ ├── oneof-field-no-delete.md │ │ │ │ │ │ ├── oneof-field-same-type.md │ │ │ │ │ │ ├── oneof-no-delete.md │ │ │ │ │ │ ├── rpc-no-delete.md │ │ │ │ │ │ ├── rpc-same-request-type.md │ │ │ │ │ │ ├── rpc-same-response-type.md │ │ │ │ │ │ └── service-no-delete.md │ │ │ │ ├── configuration │ │ │ │ │ └── configuration.md │ │ │ │ ├── generator │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── go.md │ │ │ │ │ │ ├── grpc-gateway.md │ │ │ │ │ │ └── validate.md │ │ │ │ │ └── generator.md │ │ │ │ ├── linter │ │ │ │ │ ├── linter.md │ │ │ │ │ └── rules │ │ │ │ │ │ ├── comment-enum-value.md │ │ │ │ │ │ ├── comment-enum.md │ │ │ │ │ │ ├── comment-field.md │ │ │ │ │ │ ├── comment-message.md │ │ │ │ │ │ ├── comment-oneof.md │ │ │ │ │ │ ├── comment-rpc.md │ │ │ │ │ │ ├── comment-service.md │ │ │ │ │ │ ├── directory-same-package.md │ │ │ │ │ │ ├── enum-first-value-zero.md │ │ │ │ │ │ ├── enum-no-allow-alias.md │ │ │ │ │ │ ├── enum-pascal-case.md │ │ │ │ │ │ ├── enum-value-prefix.md │ │ │ │ │ │ ├── enum-value-upper-snake-case.md │ │ │ │ │ │ ├── enum-zero-value-suffix.md │ │ │ │ │ │ ├── field-lower-snake-case.md │ │ │ │ │ │ ├── file-lower-snake-case.md │ │ │ │ │ │ ├── import-no-public.md │ │ │ │ │ │ ├── import-no-weak.md │ │ │ │ │ │ ├── import-used.md │ │ │ │ │ │ ├── message-pascal-case.md │ │ │ │ │ │ ├── oneof-lower-snake-case.md │ │ │ │ │ │ ├── package-defined.md │ │ │ │ │ │ ├── package-directory-match.md │ │ │ │ │ │ ├── package-lower-snake-case.md │ │ │ │ │ │ ├── package-same-csharp-namespace.md │ │ │ │ │ │ ├── package-same-directory.md │ │ │ │ │ │ ├── package-same-go-package.md │ │ │ │ │ │ ├── package-same-java-multiple-files.md │ │ │ │ │ │ ├── package-same-java-package.md │ │ │ │ │ │ ├── package-same-php-namespace.md │ │ │ │ │ │ ├── package-same-ruby-package.md │ │ │ │ │ │ ├── package-same-swift-prefix.md │ │ │ │ │ │ ├── package-version-suffix.md │ │ │ │ │ │ ├── rpc-no-client-streaming.md │ │ │ │ │ │ ├── rpc-no-server-streaming.md │ │ │ │ │ │ ├── rpc-pascal-case.md │ │ │ │ │ │ ├── rpc-request-response-unique.md │ │ │ │ │ │ ├── rpc-request-standard-name.md │ │ │ │ │ │ ├── rpc-response-standard-name.md │ │ │ │ │ │ ├── service-pascal-case.md │ │ │ │ │ │ └── service-suffix.md │ │ │ │ └── package-manager │ │ │ │ │ ├── easyp-vs-buf.md │ │ │ │ │ └── package-manager.md │ │ │ ├── introduction │ │ │ │ ├── install.md │ │ │ │ ├── quickstart.md │ │ │ │ └── what-is.md │ │ │ └── migration │ │ │ │ ├── buf-cli.md │ │ │ │ ├── protoc.md │ │ │ │ ├── protolock.md │ │ │ │ └── prototool.md │ │ ├── ru-blog │ │ │ ├── finally-give-up-gin-echo.md │ │ │ └── working-with-proto-errors-correctly.md │ │ └── ru-guide │ │ │ ├── TRANSLATION_STATUS.md │ │ │ ├── api-service │ │ │ └── overview.md │ │ │ ├── ci-cd │ │ │ ├── github-actions.md │ │ │ └── gitlab.md │ │ │ ├── cli │ │ │ ├── auto-completion │ │ │ │ └── auto-completion.md │ │ │ ├── breaking-changes │ │ │ │ ├── breaking-changes.md │ │ │ │ └── rules │ │ │ │ │ ├── enum-no-delete.md │ │ │ │ │ ├── enum-value-no-delete.md │ │ │ │ │ ├── enum-value-same-name.md │ │ │ │ │ ├── field-no-delete.md │ │ │ │ │ ├── field-same-cardinality.md │ │ │ │ │ ├── field-same-type.md │ │ │ │ │ ├── import-no-delete.md │ │ │ │ │ ├── message-no-delete.md │ │ │ │ │ ├── oneof-field-no-delete.md │ │ │ │ │ ├── oneof-field-same-type.md │ │ │ │ │ ├── oneof-no-delete.md │ │ │ │ │ ├── rpc-no-delete.md │ │ │ │ │ ├── rpc-same-request-type.md │ │ │ │ │ ├── rpc-same-response-type.md │ │ │ │ │ └── service-no-delete.md │ │ │ ├── configuration │ │ │ │ └── configuration.md │ │ │ ├── generator │ │ │ │ ├── examples │ │ │ │ │ ├── go.md │ │ │ │ │ ├── grpc-gateway.md │ │ │ │ │ └── validate.md │ │ │ │ └── generator.md │ │ │ ├── linter │ │ │ │ ├── linter.md │ │ │ │ └── rules │ │ │ │ │ ├── comment-enum-value.md │ │ │ │ │ ├── comment-enum.md │ │ │ │ │ ├── comment-field.md │ │ │ │ │ ├── comment-message.md │ │ │ │ │ ├── comment-oneof.md │ │ │ │ │ ├── comment-rpc.md │ │ │ │ │ ├── comment-service.md │ │ │ │ │ ├── directory-same-package.md │ │ │ │ │ ├── enum-first-value-zero.md │ │ │ │ │ ├── enum-no-allow-alias.md │ │ │ │ │ ├── enum-pascal-case.md │ │ │ │ │ ├── enum-value-prefix.md │ │ │ │ │ ├── enum-value-upper-snake-case.md │ │ │ │ │ ├── enum-zero-value-suffix.md │ │ │ │ │ ├── field-lower-snake-case.md │ │ │ │ │ ├── file-lower-snake-case.md │ │ │ │ │ ├── import-no-public.md │ │ │ │ │ ├── import-no-weak.md │ │ │ │ │ ├── import-used.md │ │ │ │ │ ├── message-pascal-case.md │ │ │ │ │ ├── oneof-lower-snake-case.md │ │ │ │ │ ├── package-defined.md │ │ │ │ │ ├── package-directory-match.md │ │ │ │ │ ├── package-lower-snake-case.md │ │ │ │ │ ├── package-same-csharp-namespace.md │ │ │ │ │ ├── package-same-directory.md │ │ │ │ │ ├── package-same-go-package.md │ │ │ │ │ ├── package-same-java-multiple-files.md │ │ │ │ │ ├── package-same-java-package.md │ │ │ │ │ ├── package-same-php-namespace.md │ │ │ │ │ ├── package-same-ruby-package.md │ │ │ │ │ ├── package-same-swift-prefix.md │ │ │ │ │ ├── package-version-suffix.md │ │ │ │ │ ├── rpc-no-client-streaming.md │ │ │ │ │ ├── rpc-no-server-streaming.md │ │ │ │ │ ├── rpc-pascal-case.md │ │ │ │ │ ├── rpc-request-response-unique.md │ │ │ │ │ ├── rpc-request-standard-name.md │ │ │ │ │ ├── rpc-response-standard-name.md │ │ │ │ │ ├── service-pascal-case.md │ │ │ │ │ └── service-suffix.md │ │ │ └── package-manager │ │ │ │ ├── easyp-vs-buf.md │ │ │ │ └── package-manager.md │ │ │ ├── introduction │ │ │ ├── install.md │ │ │ ├── quickstart.md │ │ │ └── what-is.md │ │ │ └── migration │ │ │ ├── buf-cli.md │ │ │ ├── protoc.md │ │ │ ├── protolock.md │ │ │ └── prototool.md │ ├── favicon-16.png │ ├── favicon-16.svg │ ├── favicon-32.png │ ├── favicon-512.png │ ├── favicon.icns │ ├── favicon.ico │ ├── favicon.svg │ ├── icon-192.png │ ├── icon-512.png │ ├── index.html │ └── site.webmanifest ├── index.html ├── index.html.backup ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── apple-touch-icon.png │ ├── apple-touch-icon.svg │ ├── docs │ │ ├── blog │ │ │ ├── finally-give-up-gin-echo.md │ │ │ └── working-with-proto-errors-correctly.md │ │ ├── guide │ │ │ ├── api-service │ │ │ │ └── overview.md │ │ │ ├── ci-cd │ │ │ │ ├── github-actions.md │ │ │ │ └── gitlab.md │ │ │ ├── cli │ │ │ │ ├── auto-completion │ │ │ │ │ └── auto-completion.md │ │ │ │ ├── breaking-changes │ │ │ │ │ ├── breaking-changes.md │ │ │ │ │ └── rules │ │ │ │ │ │ ├── enum-no-delete.md │ │ │ │ │ │ ├── enum-value-no-delete.md │ │ │ │ │ │ ├── enum-value-same-name.md │ │ │ │ │ │ ├── field-no-delete.md │ │ │ │ │ │ ├── field-same-cardinality.md │ │ │ │ │ │ ├── field-same-type.md │ │ │ │ │ │ ├── import-no-delete.md │ │ │ │ │ │ ├── message-no-delete.md │ │ │ │ │ │ ├── oneof-field-no-delete.md │ │ │ │ │ │ ├── oneof-field-same-type.md │ │ │ │ │ │ ├── oneof-no-delete.md │ │ │ │ │ │ ├── rpc-no-delete.md │ │ │ │ │ │ ├── rpc-same-request-type.md │ │ │ │ │ │ ├── rpc-same-response-type.md │ │ │ │ │ │ └── service-no-delete.md │ │ │ │ ├── configuration │ │ │ │ │ └── configuration.md │ │ │ │ ├── generator │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── go.md │ │ │ │ │ │ ├── grpc-gateway.md │ │ │ │ │ │ └── validate.md │ │ │ │ │ └── generator.md │ │ │ │ ├── linter │ │ │ │ │ ├── linter.md │ │ │ │ │ └── rules │ │ │ │ │ │ ├── comment-enum-value.md │ │ │ │ │ │ ├── comment-enum.md │ │ │ │ │ │ ├── comment-field.md │ │ │ │ │ │ ├── comment-message.md │ │ │ │ │ │ ├── comment-oneof.md │ │ │ │ │ │ ├── comment-rpc.md │ │ │ │ │ │ ├── comment-service.md │ │ │ │ │ │ ├── directory-same-package.md │ │ │ │ │ │ ├── enum-first-value-zero.md │ │ │ │ │ │ ├── enum-no-allow-alias.md │ │ │ │ │ │ ├── enum-pascal-case.md │ │ │ │ │ │ ├── enum-value-prefix.md │ │ │ │ │ │ ├── enum-value-upper-snake-case.md │ │ │ │ │ │ ├── enum-zero-value-suffix.md │ │ │ │ │ │ ├── field-lower-snake-case.md │ │ │ │ │ │ ├── file-lower-snake-case.md │ │ │ │ │ │ ├── import-no-public.md │ │ │ │ │ │ ├── import-no-weak.md │ │ │ │ │ │ ├── import-used.md │ │ │ │ │ │ ├── message-pascal-case.md │ │ │ │ │ │ ├── oneof-lower-snake-case.md │ │ │ │ │ │ ├── package-defined.md │ │ │ │ │ │ ├── package-directory-match.md │ │ │ │ │ │ ├── package-lower-snake-case.md │ │ │ │ │ │ ├── package-same-csharp-namespace.md │ │ │ │ │ │ ├── package-same-directory.md │ │ │ │ │ │ ├── package-same-go-package.md │ │ │ │ │ │ ├── package-same-java-multiple-files.md │ │ │ │ │ │ ├── package-same-java-package.md │ │ │ │ │ │ ├── package-same-php-namespace.md │ │ │ │ │ │ ├── package-same-ruby-package.md │ │ │ │ │ │ ├── package-same-swift-prefix.md │ │ │ │ │ │ ├── package-version-suffix.md │ │ │ │ │ │ ├── rpc-no-client-streaming.md │ │ │ │ │ │ ├── rpc-no-server-streaming.md │ │ │ │ │ │ ├── rpc-pascal-case.md │ │ │ │ │ │ ├── rpc-request-response-unique.md │ │ │ │ │ │ ├── rpc-request-standard-name.md │ │ │ │ │ │ ├── rpc-response-standard-name.md │ │ │ │ │ │ ├── service-pascal-case.md │ │ │ │ │ │ └── service-suffix.md │ │ │ │ └── package-manager │ │ │ │ │ ├── easyp-vs-buf.md │ │ │ │ │ └── package-manager.md │ │ │ ├── introduction │ │ │ │ ├── install.md │ │ │ │ ├── quickstart.md │ │ │ │ └── what-is.md │ │ │ └── migration │ │ │ │ ├── buf-cli.md │ │ │ │ ├── protoc.md │ │ │ │ ├── protolock.md │ │ │ │ └── prototool.md │ │ ├── ru-blog │ │ │ ├── finally-give-up-gin-echo.md │ │ │ └── working-with-proto-errors-correctly.md │ │ └── ru-guide │ │ │ ├── TRANSLATION_STATUS.md │ │ │ ├── api-service │ │ │ └── overview.md │ │ │ ├── ci-cd │ │ │ ├── github-actions.md │ │ │ └── gitlab.md │ │ │ ├── cli │ │ │ ├── auto-completion │ │ │ │ └── auto-completion.md │ │ │ ├── breaking-changes │ │ │ │ ├── breaking-changes.md │ │ │ │ └── rules │ │ │ │ │ ├── enum-no-delete.md │ │ │ │ │ ├── enum-value-no-delete.md │ │ │ │ │ ├── enum-value-same-name.md │ │ │ │ │ ├── field-no-delete.md │ │ │ │ │ ├── field-same-cardinality.md │ │ │ │ │ ├── field-same-type.md │ │ │ │ │ ├── import-no-delete.md │ │ │ │ │ ├── message-no-delete.md │ │ │ │ │ ├── oneof-field-no-delete.md │ │ │ │ │ ├── oneof-field-same-type.md │ │ │ │ │ ├── oneof-no-delete.md │ │ │ │ │ ├── rpc-no-delete.md │ │ │ │ │ ├── rpc-same-request-type.md │ │ │ │ │ ├── rpc-same-response-type.md │ │ │ │ │ └── service-no-delete.md │ │ │ ├── configuration │ │ │ │ └── configuration.md │ │ │ ├── generator │ │ │ │ ├── examples │ │ │ │ │ ├── go.md │ │ │ │ │ ├── grpc-gateway.md │ │ │ │ │ └── validate.md │ │ │ │ └── generator.md │ │ │ ├── linter │ │ │ │ ├── linter.md │ │ │ │ └── rules │ │ │ │ │ ├── comment-enum-value.md │ │ │ │ │ ├── comment-enum.md │ │ │ │ │ ├── comment-field.md │ │ │ │ │ ├── comment-message.md │ │ │ │ │ ├── comment-oneof.md │ │ │ │ │ ├── comment-rpc.md │ │ │ │ │ ├── comment-service.md │ │ │ │ │ ├── directory-same-package.md │ │ │ │ │ ├── enum-first-value-zero.md │ │ │ │ │ ├── enum-no-allow-alias.md │ │ │ │ │ ├── enum-pascal-case.md │ │ │ │ │ ├── enum-value-prefix.md │ │ │ │ │ ├── enum-value-upper-snake-case.md │ │ │ │ │ ├── enum-zero-value-suffix.md │ │ │ │ │ ├── field-lower-snake-case.md │ │ │ │ │ ├── file-lower-snake-case.md │ │ │ │ │ ├── import-no-public.md │ │ │ │ │ ├── import-no-weak.md │ │ │ │ │ ├── import-used.md │ │ │ │ │ ├── message-pascal-case.md │ │ │ │ │ ├── oneof-lower-snake-case.md │ │ │ │ │ ├── package-defined.md │ │ │ │ │ ├── package-directory-match.md │ │ │ │ │ ├── package-lower-snake-case.md │ │ │ │ │ ├── package-same-csharp-namespace.md │ │ │ │ │ ├── package-same-directory.md │ │ │ │ │ ├── package-same-go-package.md │ │ │ │ │ ├── package-same-java-multiple-files.md │ │ │ │ │ ├── package-same-java-package.md │ │ │ │ │ ├── package-same-php-namespace.md │ │ │ │ │ ├── package-same-ruby-package.md │ │ │ │ │ ├── package-same-swift-prefix.md │ │ │ │ │ ├── package-version-suffix.md │ │ │ │ │ ├── rpc-no-client-streaming.md │ │ │ │ │ ├── rpc-no-server-streaming.md │ │ │ │ │ ├── rpc-pascal-case.md │ │ │ │ │ ├── rpc-request-response-unique.md │ │ │ │ │ ├── rpc-request-standard-name.md │ │ │ │ │ ├── rpc-response-standard-name.md │ │ │ │ │ ├── service-pascal-case.md │ │ │ │ │ └── service-suffix.md │ │ │ └── package-manager │ │ │ │ ├── easyp-vs-buf.md │ │ │ │ └── package-manager.md │ │ │ ├── introduction │ │ │ ├── install.md │ │ │ ├── quickstart.md │ │ │ └── what-is.md │ │ │ └── migration │ │ │ ├── buf-cli.md │ │ │ ├── protoc.md │ │ │ ├── protolock.md │ │ │ └── prototool.md │ ├── favicon-16.png │ ├── favicon-16.svg │ ├── favicon-32.png │ ├── favicon-512.png │ ├── favicon.icns │ ├── favicon.ico │ ├── favicon.svg │ ├── icon-192.png │ ├── icon-512.png │ └── site.webmanifest ├── scripts │ └── migrate-vitepress.js ├── src │ ├── App.tsx │ ├── assets │ │ └── icons │ │ │ └── easyp-logo.svg │ ├── components │ │ ├── ArchitectureComparison.tsx │ │ ├── EasyPLogo.tsx │ │ ├── ErrorBoundary.tsx │ │ ├── FeatureSwitcher.tsx │ │ ├── Footer.tsx │ │ ├── Hero.tsx │ │ ├── LanguageSwitcher.tsx │ │ ├── Mermaid.tsx │ │ ├── Navbar.tsx │ │ ├── RegistryPreview.tsx │ │ ├── Snowflakes.tsx │ │ ├── TrustedBy.tsx │ │ └── docs │ │ │ ├── DocsHeader.tsx │ │ │ ├── DocsLayout.tsx │ │ │ ├── DocsSidebar.tsx │ │ │ ├── MarkdownPage.tsx │ │ │ ├── NotFound.tsx │ │ │ └── SidebarItem.tsx │ ├── config │ │ ├── sidebar.en.json │ │ └── sidebar.ru.json │ ├── contexts │ │ └── TocContext.tsx │ ├── i18n │ │ ├── config.ts │ │ └── locales │ │ │ ├── en.json │ │ │ └── ru.json │ ├── index.css │ ├── lib │ │ └── markdown │ │ │ ├── ExampleUsage.tsx │ │ │ ├── README.md │ │ │ ├── components │ │ │ ├── CodeBlock.tsx │ │ │ ├── CustomBlock.tsx │ │ │ ├── Heading.tsx │ │ │ ├── MarkdownContent.tsx │ │ │ └── TableOfContents.tsx │ │ │ ├── demo.tsx │ │ │ ├── example.md │ │ │ ├── index.ts │ │ │ ├── plugins │ │ │ ├── codeFocus.tsx │ │ │ ├── htmlBlocks.tsx │ │ │ ├── links.tsx │ │ │ ├── mermaid.tsx │ │ │ └── toc.tsx │ │ │ ├── processor.tsx │ │ │ ├── styles.css │ │ │ ├── types.ts │ │ │ └── utils │ │ │ ├── frontmatter.ts │ │ │ ├── headings.ts │ │ │ ├── paths.ts │ │ │ └── prismTheme.ts │ ├── main.tsx │ ├── pages │ │ ├── BlogPage.tsx │ │ ├── BlogPostPage.tsx │ │ └── HomePage.tsx │ ├── routes │ │ └── DocsRoutes.tsx │ ├── types │ │ └── sidebar.ts │ └── utils │ │ ├── extractHeadings.ts │ │ ├── github.ts │ │ ├── parseBadGood.ts │ │ ├── sidebarUtils.ts │ │ └── useMarkdown.ts ├── tailwind.config.js ├── test-pagination.ts ├── tsconfig.json ├── tsconfig.tsbuildinfo └── vite.config.ts ├── easyp.yaml ├── example.easyp.yaml ├── go.mod ├── go.sum ├── internal ├── adapters │ ├── console │ │ ├── bash.go │ │ ├── error.go │ │ ├── new.go │ │ └── powershell.go │ ├── go_git │ │ ├── get_dir_walker.go │ │ └── go_git.go │ ├── lock_file │ │ ├── deps_iter.go │ │ ├── is_empty.go │ │ ├── lock_file.go │ │ ├── read.go │ │ └── write.go │ ├── module_config │ │ ├── module_config.go │ │ ├── read_buf_work.go │ │ ├── read_easyp.go │ │ └── read_from_repo.go │ ├── plugin │ │ ├── builtin.go │ │ ├── builtin_impl.go │ │ ├── command.go │ │ ├── interface.go │ │ ├── local.go │ │ ├── remote.go │ │ ├── wasm │ │ │ ├── grpc_cpp_plugin.wasm │ │ │ ├── grpc_csharp_plugin.wasm │ │ │ ├── grpc_node_plugin.wasm │ │ │ ├── grpc_objective_c_plugin.wasm │ │ │ ├── grpc_php_plugin.wasm │ │ │ ├── grpc_python_plugin.wasm │ │ │ ├── grpc_ruby_plugin.wasm │ │ │ ├── memory.wasm │ │ │ ├── memory.wat │ │ │ ├── protoc-gen-cpp.wasm │ │ │ ├── protoc-gen-csharp.wasm │ │ │ ├── protoc-gen-objc.wasm │ │ │ ├── protoc-gen-php.wasm │ │ │ ├── protoc-gen-python.wasm │ │ │ └── protoc-gen-ruby.wasm │ │ └── wasm_embed.go │ ├── repository │ │ ├── git │ │ │ ├── archive.go │ │ │ ├── fetch.go │ │ │ ├── get_files.go │ │ │ ├── git.go │ │ │ ├── read_file.go │ │ │ └── read_revision.go │ │ └── repository.go │ └── storage │ │ ├── cache_download.go │ │ ├── create_cache_repository_dir.go │ │ ├── get_cache_download_paths.go │ │ ├── get_cache_download_paths_test.go │ │ ├── get_install_dir.go │ │ ├── get_install_dir_test.go │ │ ├── get_installed_module_hash.go │ │ ├── install.go │ │ ├── install_test.go │ │ ├── is_module_installed.go │ │ ├── is_module_installed_test.go │ │ ├── mocks │ │ └── LockFile.go │ │ ├── sanitize.go │ │ ├── storage.go │ │ └── storage_test.go ├── api │ ├── breaking_check.go │ ├── completion.go │ ├── enum.go │ ├── generate.go │ ├── init.go │ ├── interface.go │ ├── lint.go │ ├── mod.go │ └── temporaly_helper.go ├── config │ ├── breaking_check.go │ ├── config.go │ ├── default.go │ └── lint.go ├── core │ ├── breaking_check.go │ ├── breaking_checker.go │ ├── breaking_checker_test.go │ ├── check_lint_ignore.go │ ├── core.go │ ├── dom.go │ ├── download.go │ ├── fs.go │ ├── generate.go │ ├── generate_bucket.go │ ├── generate_insertion_point.go │ ├── generate_insertion_point_test.go │ ├── get.go │ ├── init.go │ ├── instruction_parser.go │ ├── instruction_parser_test.go │ ├── lint.go │ ├── mocks │ │ ├── Console.go │ │ ├── CurrentProjectGitWalker.go │ │ ├── LockFile.go │ │ ├── ModuleConfig.go │ │ ├── Rule.go │ │ └── Storage.go │ ├── mod.go │ ├── models │ │ ├── cache_download_paths.go │ │ ├── errors.go │ │ ├── lock_file_info.go │ │ ├── module.go │ │ ├── module_config.go │ │ ├── module_test.go │ │ └── revision.go │ ├── path_helpers │ │ ├── is_target_path.go │ │ └── is_target_path_test.go │ ├── proto_info_read.go │ ├── update.go │ └── vendor.go ├── flags │ └── flags.go ├── fs │ ├── fs │ │ ├── adapter.go │ │ └── dir_walker.go │ └── go_git │ │ ├── adapter.go │ │ └── dir_walker.go ├── rules │ ├── builder.go │ ├── check_lint_ignore_test.go │ ├── comment_enum.go │ ├── comment_enum_test.go │ ├── comment_enum_value.go │ ├── comment_enum_value_test.go │ ├── comment_field_message.go │ ├── comment_field_message_test.go │ ├── comment_message.go │ ├── comment_message_test.go │ ├── comment_one_of.go │ ├── comment_one_of_test.go │ ├── comment_rpc.go │ ├── comment_rpc_test.go │ ├── comment_service.go │ ├── comment_service_test.go │ ├── directory_same_package.go │ ├── directory_same_package_test.go │ ├── enum_first_value_zero.go │ ├── enum_first_value_zero_test.go │ ├── enum_no_allow_alias.go │ ├── enum_no_allow_alias_test.go │ ├── enum_pascal_case.go │ ├── enum_pascal_case_test.go │ ├── enum_value_prefix.go │ ├── enum_value_prefix_test.go │ ├── enum_value_upper_snake_case.go │ ├── enum_value_upper_snake_case_test.go │ ├── enum_zero_value_suffix.go │ ├── enum_zero_value_suffix_test.go │ ├── file_lower_snake_case.go │ ├── file_lower_snake_case_test.go │ ├── import_no_public.go │ ├── import_no_public_test.go │ ├── import_no_weak.go │ ├── import_no_weak_test.go │ ├── import_used.go │ ├── import_used_test.go │ ├── init_test.go │ ├── message_field_lower_snake_case.go │ ├── message_field_lower_snake_case_test.go │ ├── message_pascal_case.go │ ├── message_pascal_case_test.go │ ├── oneof_lower_snake_case.go │ ├── oneof_lower_snake_case_test.go │ ├── package_defined.go │ ├── package_defined_test.go │ ├── package_directory_match.go │ ├── package_directory_match_test.go │ ├── package_lower_snake_case.go │ ├── package_lower_snake_case_test.go │ ├── package_no_import_cycle.go │ ├── package_same_csharp_namespace.go │ ├── package_same_csharp_namespace_test.go │ ├── package_same_directory.go │ ├── package_same_directory_test.go │ ├── package_same_go_package.go │ ├── package_same_go_package_test.go │ ├── package_same_java_multiple_files.go │ ├── package_same_java_multiple_files_test.go │ ├── package_same_java_package.go │ ├── package_same_java_package_test.go │ ├── package_same_php_namespace.go │ ├── package_same_php_namespace_test.go │ ├── package_same_ruby_package.go │ ├── package_same_ruby_package_test.go │ ├── package_same_swift_prefix.go │ ├── package_same_swift_prefix_test.go │ ├── package_version_suffix.go │ ├── package_version_suffix_test.go │ ├── protovalidate.go │ ├── rpc_no_client_streaming.go │ ├── rpc_no_client_streaming_test.go │ ├── rpc_no_server_streaming.go │ ├── rpc_no_server_streaming_test.go │ ├── rpc_pascal_case.go │ ├── rpc_pascal_case_test.go │ ├── rpc_request_response_unique.go │ ├── rpc_request_response_unique_test.go │ ├── rpc_request_standard_name.go │ ├── rpc_request_standard_name_test.go │ ├── rpc_response_standard_name.go │ ├── rpc_response_standard_name_test.go │ ├── service_pascal_case.go │ ├── service_pascal_case_test.go │ ├── service_suffix.go │ └── service_suffix_test.go └── version │ └── version.go ├── testdata ├── api │ └── session │ │ └── v1 │ │ ├── events.proto │ │ └── session.proto ├── auth │ ├── InvalidName.proto │ ├── empty_pkg.proto │ ├── queue.proto │ └── service.proto ├── breaking_check │ ├── broken │ │ ├── messages.proto │ │ └── services.proto │ ├── not_broken │ │ ├── messages.proto │ │ └── services.proto │ └── original │ │ ├── messages.proto │ │ └── services.proto ├── import_used │ ├── enums.proto │ ├── field.proto │ ├── for_one_of.proto │ ├── messages.proto │ ├── not_used.proto │ ├── options.proto │ ├── thrd_party │ │ ├── enums.proto │ │ ├── for_extends.proto │ │ ├── for_option.proto │ │ ├── messages.proto │ │ ├── options.proto │ │ └── types.proto │ ├── types.proto │ └── used.proto ├── invalid_options │ ├── queue.proto │ └── session.proto ├── invalid_pkg │ ├── queue.proto │ └── session.proto └── no_lint │ ├── no_lint_buf_comment.proto │ └── no_lint_easyp_comment.proto └── wellknownimports ├── embed.go └── google └── protobuf ├── any.proto ├── api.proto ├── compiler └── plugin.proto ├── cpp_features.proto ├── descriptor.proto ├── duration.proto ├── empty.proto ├── field_mask.proto ├── java_features.proto ├── source_context.proto ├── struct.proto ├── timestamp.proto ├── type.proto └── wrappers.proto /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/relator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/.github/workflows/relator.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /.mockery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/.mockery.yaml -------------------------------------------------------------------------------- /Docker/base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/Docker/base/Dockerfile -------------------------------------------------------------------------------- /Docker/generator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/Docker/generator/Dockerfile -------------------------------------------------------------------------------- /Docker/lint/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/Docker/lint/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/Taskfile.yml -------------------------------------------------------------------------------- /cmd/easyp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/cmd/easyp/main.go -------------------------------------------------------------------------------- /docs/dist/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/dist/apple-touch-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/apple-touch-icon.svg -------------------------------------------------------------------------------- /docs/dist/assets/_basePickBy-Dm_sMLMB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/_basePickBy-Dm_sMLMB.js -------------------------------------------------------------------------------- /docs/dist/assets/_baseUniq-UvPYksec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/_baseUniq-UvPYksec.js -------------------------------------------------------------------------------- /docs/dist/assets/arc-CFZlwBOQ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/arc-CFZlwBOQ.js -------------------------------------------------------------------------------- /docs/dist/assets/architectureDiagram-VXUJARFQ-B0cQz-oU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/architectureDiagram-VXUJARFQ-B0cQz-oU.js -------------------------------------------------------------------------------- /docs/dist/assets/blockDiagram-VD42YOAC-CuS2rFPZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/blockDiagram-VD42YOAC-CuS2rFPZ.js -------------------------------------------------------------------------------- /docs/dist/assets/c4Diagram-YG6GDRKO-DoDAOfmS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/c4Diagram-YG6GDRKO-DoDAOfmS.js -------------------------------------------------------------------------------- /docs/dist/assets/channel-92COyuQS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/channel-92COyuQS.js -------------------------------------------------------------------------------- /docs/dist/assets/chunk-4BX2VUAB-DQFJwyRw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/chunk-4BX2VUAB-DQFJwyRw.js -------------------------------------------------------------------------------- /docs/dist/assets/chunk-55IACEB6-k1CzMQx-.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/chunk-55IACEB6-k1CzMQx-.js -------------------------------------------------------------------------------- /docs/dist/assets/chunk-B4BG7PRW-BM5l_f1F.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/chunk-B4BG7PRW-BM5l_f1F.js -------------------------------------------------------------------------------- /docs/dist/assets/chunk-DI55MBZ5-J7umTVjb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/chunk-DI55MBZ5-J7umTVjb.js -------------------------------------------------------------------------------- /docs/dist/assets/chunk-FMBD7UC4-mpZRA3cF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/chunk-FMBD7UC4-mpZRA3cF.js -------------------------------------------------------------------------------- /docs/dist/assets/chunk-QN33PNHL-Ee1tIsWT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/chunk-QN33PNHL-Ee1tIsWT.js -------------------------------------------------------------------------------- /docs/dist/assets/chunk-QZHKN3VN-DPxP3j_u.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/chunk-QZHKN3VN-DPxP3j_u.js -------------------------------------------------------------------------------- /docs/dist/assets/chunk-TZMSLE5B-DET7R8sF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/chunk-TZMSLE5B-DET7R8sF.js -------------------------------------------------------------------------------- /docs/dist/assets/classDiagram-2ON5EDUG-B2e87Lie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/classDiagram-2ON5EDUG-B2e87Lie.js -------------------------------------------------------------------------------- /docs/dist/assets/classDiagram-v2-WZHVMYZB-B2e87Lie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/classDiagram-v2-WZHVMYZB-B2e87Lie.js -------------------------------------------------------------------------------- /docs/dist/assets/clone-uEwA9FQU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/clone-uEwA9FQU.js -------------------------------------------------------------------------------- /docs/dist/assets/cose-bilkent-S5V4N54A-DwegvPdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/cose-bilkent-S5V4N54A-DwegvPdd.js -------------------------------------------------------------------------------- /docs/dist/assets/cytoscape.esm-CF_z7lu9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/cytoscape.esm-CF_z7lu9.js -------------------------------------------------------------------------------- /docs/dist/assets/dagre-6UL2VRFP-DAENmghR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/dagre-6UL2VRFP-DAENmghR.js -------------------------------------------------------------------------------- /docs/dist/assets/defaultLocale-C4B-KCzX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/defaultLocale-C4B-KCzX.js -------------------------------------------------------------------------------- /docs/dist/assets/diagram-PSM6KHXK-BM9fGZyn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/diagram-PSM6KHXK-BM9fGZyn.js -------------------------------------------------------------------------------- /docs/dist/assets/diagram-QEK2KX5R-FYQHmCXL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/diagram-QEK2KX5R-FYQHmCXL.js -------------------------------------------------------------------------------- /docs/dist/assets/diagram-S2PKOQOG-CiIQ2nC9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/diagram-S2PKOQOG-CiIQ2nC9.js -------------------------------------------------------------------------------- /docs/dist/assets/erDiagram-Q2GNP2WA-RPj5FPuZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/erDiagram-Q2GNP2WA-RPj5FPuZ.js -------------------------------------------------------------------------------- /docs/dist/assets/flowDiagram-NV44I4VS-kx5p1N1n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/flowDiagram-NV44I4VS-kx5p1N1n.js -------------------------------------------------------------------------------- /docs/dist/assets/ganttDiagram-LVOFAZNH-C1uRgA1W.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/ganttDiagram-LVOFAZNH-C1uRgA1W.js -------------------------------------------------------------------------------- /docs/dist/assets/gitGraphDiagram-NY62KEGX-C5UcOD27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/gitGraphDiagram-NY62KEGX-C5UcOD27.js -------------------------------------------------------------------------------- /docs/dist/assets/graph-B7dpUAh4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/graph-B7dpUAh4.js -------------------------------------------------------------------------------- /docs/dist/assets/index-BtiIqbpV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/index-BtiIqbpV.js -------------------------------------------------------------------------------- /docs/dist/assets/index-DfEK4y8B.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/index-DfEK4y8B.css -------------------------------------------------------------------------------- /docs/dist/assets/infoDiagram-ER5ION4S-Ba3AJNAB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/infoDiagram-ER5ION4S-Ba3AJNAB.js -------------------------------------------------------------------------------- /docs/dist/assets/init-Gi6I4Gst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/init-Gi6I4Gst.js -------------------------------------------------------------------------------- /docs/dist/assets/journeyDiagram-XKPGCS4Q-arI6-S00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/journeyDiagram-XKPGCS4Q-arI6-S00.js -------------------------------------------------------------------------------- /docs/dist/assets/kanban-definition-3W4ZIXB7-CzDXUcaj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/kanban-definition-3W4ZIXB7-CzDXUcaj.js -------------------------------------------------------------------------------- /docs/dist/assets/katex-CbqxIyal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/katex-CbqxIyal.js -------------------------------------------------------------------------------- /docs/dist/assets/layout-B_-UBl_B.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/layout-B_-UBl_B.js -------------------------------------------------------------------------------- /docs/dist/assets/linear-DIZeUs0A.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/linear-DIZeUs0A.js -------------------------------------------------------------------------------- /docs/dist/assets/mindmap-definition-VGOIOE7T-D_KtVAfA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/mindmap-definition-VGOIOE7T-D_KtVAfA.js -------------------------------------------------------------------------------- /docs/dist/assets/ordinal-Cboi1Yqb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/ordinal-Cboi1Yqb.js -------------------------------------------------------------------------------- /docs/dist/assets/pieDiagram-ADFJNKIX-BCH2WNkj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/pieDiagram-ADFJNKIX-BCH2WNkj.js -------------------------------------------------------------------------------- /docs/dist/assets/prism-bash-DTkDXsAh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/prism-bash-DTkDXsAh.js -------------------------------------------------------------------------------- /docs/dist/assets/prism-go-CyY0RbE6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/prism-go-CyY0RbE6.js -------------------------------------------------------------------------------- /docs/dist/assets/prism-json-xwnKirkR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/prism-json-xwnKirkR.js -------------------------------------------------------------------------------- /docs/dist/assets/prism-protobuf-DiQ_z8B5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/prism-protobuf-DiQ_z8B5.js -------------------------------------------------------------------------------- /docs/dist/assets/prism-yaml-Chm5ZdEN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/prism-yaml-Chm5ZdEN.js -------------------------------------------------------------------------------- /docs/dist/assets/quadrantDiagram-AYHSOK5B-BrYUoIUK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/quadrantDiagram-AYHSOK5B-BrYUoIUK.js -------------------------------------------------------------------------------- /docs/dist/assets/requirementDiagram-UZGBJVZJ-Cyv_arKH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/requirementDiagram-UZGBJVZJ-Cyv_arKH.js -------------------------------------------------------------------------------- /docs/dist/assets/sankeyDiagram-TZEHDZUN-D-pyaHYp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/sankeyDiagram-TZEHDZUN-D-pyaHYp.js -------------------------------------------------------------------------------- /docs/dist/assets/sequenceDiagram-WL72ISMW-Dh5e4L85.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/sequenceDiagram-WL72ISMW-Dh5e4L85.js -------------------------------------------------------------------------------- /docs/dist/assets/stateDiagram-FKZM4ZOC-C2mlkll6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/stateDiagram-FKZM4ZOC-C2mlkll6.js -------------------------------------------------------------------------------- /docs/dist/assets/stateDiagram-v2-4FDKWEC3-BaoOWtKj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/stateDiagram-v2-4FDKWEC3-BaoOWtKj.js -------------------------------------------------------------------------------- /docs/dist/assets/timeline-definition-IT6M3QCI-Czw3v9K4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/timeline-definition-IT6M3QCI-Czw3v9K4.js -------------------------------------------------------------------------------- /docs/dist/assets/treemap-KMMF4GRG-BdBrUw5q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/treemap-KMMF4GRG-BdBrUw5q.js -------------------------------------------------------------------------------- /docs/dist/assets/xychartDiagram-PRI3JC2R-mB92NfON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/assets/xychartDiagram-PRI3JC2R-mB92NfON.js -------------------------------------------------------------------------------- /docs/dist/docs/blog/finally-give-up-gin-echo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/blog/finally-give-up-gin-echo.md -------------------------------------------------------------------------------- /docs/dist/docs/blog/working-with-proto-errors-correctly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/blog/working-with-proto-errors-correctly.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/api-service/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/api-service/overview.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/ci-cd/github-actions.md: -------------------------------------------------------------------------------- 1 | # Github Actions 2 | 3 | ## Work in progress -------------------------------------------------------------------------------- /docs/dist/docs/guide/ci-cd/gitlab.md: -------------------------------------------------------------------------------- 1 | # Gitlab 2 | 3 | ## Work in progress -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/auto-completion/auto-completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/auto-completion/auto-completion.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/breaking-changes/breaking-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/breaking-changes/breaking-changes.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/breaking-changes/rules/enum-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/breaking-changes/rules/enum-no-delete.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/breaking-changes/rules/enum-value-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/breaking-changes/rules/enum-value-no-delete.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/breaking-changes/rules/enum-value-same-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/breaking-changes/rules/enum-value-same-name.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/breaking-changes/rules/field-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/breaking-changes/rules/field-no-delete.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/breaking-changes/rules/field-same-cardinality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/breaking-changes/rules/field-same-cardinality.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/breaking-changes/rules/field-same-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/breaking-changes/rules/field-same-type.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/breaking-changes/rules/import-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/breaking-changes/rules/import-no-delete.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/breaking-changes/rules/message-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/breaking-changes/rules/message-no-delete.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/breaking-changes/rules/oneof-field-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/breaking-changes/rules/oneof-field-no-delete.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/breaking-changes/rules/oneof-field-same-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/breaking-changes/rules/oneof-field-same-type.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/breaking-changes/rules/oneof-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/breaking-changes/rules/oneof-no-delete.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/breaking-changes/rules/rpc-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/breaking-changes/rules/rpc-no-delete.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/breaking-changes/rules/rpc-same-request-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/breaking-changes/rules/rpc-same-request-type.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/breaking-changes/rules/rpc-same-response-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/breaking-changes/rules/rpc-same-response-type.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/breaking-changes/rules/service-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/breaking-changes/rules/service-no-delete.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/configuration/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/configuration/configuration.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/generator/examples/go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/generator/examples/go.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/generator/examples/grpc-gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/generator/examples/grpc-gateway.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/generator/examples/validate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/generator/examples/validate.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/generator/generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/generator/generator.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/linter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/linter.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/comment-enum-value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/comment-enum-value.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/comment-enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/comment-enum.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/comment-field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/comment-field.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/comment-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/comment-message.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/comment-oneof.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/comment-oneof.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/comment-rpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/comment-rpc.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/comment-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/comment-service.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/directory-same-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/directory-same-package.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/enum-first-value-zero.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/enum-first-value-zero.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/enum-no-allow-alias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/enum-no-allow-alias.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/enum-pascal-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/enum-pascal-case.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/enum-value-prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/enum-value-prefix.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/enum-value-upper-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/enum-value-upper-snake-case.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/enum-zero-value-suffix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/enum-zero-value-suffix.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/field-lower-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/field-lower-snake-case.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/file-lower-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/file-lower-snake-case.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/import-no-public.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/import-no-public.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/import-no-weak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/import-no-weak.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/import-used.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/import-used.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/message-pascal-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/message-pascal-case.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/oneof-lower-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/oneof-lower-snake-case.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/package-defined.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/package-defined.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/package-directory-match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/package-directory-match.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/package-lower-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/package-lower-snake-case.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/package-same-csharp-namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/package-same-csharp-namespace.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/package-same-directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/package-same-directory.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/package-same-go-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/package-same-go-package.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/package-same-java-multiple-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/package-same-java-multiple-files.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/package-same-java-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/package-same-java-package.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/package-same-php-namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/package-same-php-namespace.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/package-same-ruby-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/package-same-ruby-package.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/package-same-swift-prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/package-same-swift-prefix.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/package-version-suffix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/package-version-suffix.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/rpc-no-client-streaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/rpc-no-client-streaming.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/rpc-no-server-streaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/rpc-no-server-streaming.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/rpc-pascal-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/rpc-pascal-case.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/rpc-request-response-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/rpc-request-response-unique.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/rpc-request-standard-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/rpc-request-standard-name.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/rpc-response-standard-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/rpc-response-standard-name.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/service-pascal-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/service-pascal-case.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/linter/rules/service-suffix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/linter/rules/service-suffix.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/package-manager/easyp-vs-buf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/package-manager/easyp-vs-buf.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/cli/package-manager/package-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/cli/package-manager/package-manager.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/introduction/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/introduction/install.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/introduction/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/introduction/quickstart.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/introduction/what-is.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/guide/introduction/what-is.md -------------------------------------------------------------------------------- /docs/dist/docs/guide/migration/buf-cli.md: -------------------------------------------------------------------------------- 1 | # Buf CLI 2 | 3 | ## Work in progress -------------------------------------------------------------------------------- /docs/dist/docs/guide/migration/protoc.md: -------------------------------------------------------------------------------- 1 | # Protoc 2 | 3 | ## Work in progress -------------------------------------------------------------------------------- /docs/dist/docs/guide/migration/protolock.md: -------------------------------------------------------------------------------- 1 | # Protolock 2 | 3 | ## Work in progress -------------------------------------------------------------------------------- /docs/dist/docs/guide/migration/prototool.md: -------------------------------------------------------------------------------- 1 | # Prototool 2 | 3 | ## Work in progress -------------------------------------------------------------------------------- /docs/dist/docs/ru-blog/finally-give-up-gin-echo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-blog/finally-give-up-gin-echo.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-blog/working-with-proto-errors-correctly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-blog/working-with-proto-errors-correctly.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/TRANSLATION_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/TRANSLATION_STATUS.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/api-service/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/api-service/overview.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/ci-cd/github-actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/ci-cd/github-actions.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/ci-cd/gitlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/ci-cd/gitlab.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/auto-completion/auto-completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/auto-completion/auto-completion.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/breaking-changes/breaking-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/breaking-changes/breaking-changes.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/breaking-changes/rules/enum-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/breaking-changes/rules/enum-no-delete.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/breaking-changes/rules/enum-value-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/breaking-changes/rules/enum-value-no-delete.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/breaking-changes/rules/enum-value-same-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/breaking-changes/rules/enum-value-same-name.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/breaking-changes/rules/field-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/breaking-changes/rules/field-no-delete.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/breaking-changes/rules/field-same-cardinality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/breaking-changes/rules/field-same-cardinality.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/breaking-changes/rules/field-same-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/breaking-changes/rules/field-same-type.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/breaking-changes/rules/import-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/breaking-changes/rules/import-no-delete.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/breaking-changes/rules/message-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/breaking-changes/rules/message-no-delete.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/breaking-changes/rules/oneof-field-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/breaking-changes/rules/oneof-field-no-delete.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/breaking-changes/rules/oneof-field-same-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/breaking-changes/rules/oneof-field-same-type.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/breaking-changes/rules/oneof-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/breaking-changes/rules/oneof-no-delete.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/breaking-changes/rules/rpc-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/breaking-changes/rules/rpc-no-delete.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/breaking-changes/rules/rpc-same-request-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/breaking-changes/rules/rpc-same-request-type.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/breaking-changes/rules/rpc-same-response-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/breaking-changes/rules/rpc-same-response-type.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/breaking-changes/rules/service-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/breaking-changes/rules/service-no-delete.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/configuration/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/configuration/configuration.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/generator/examples/go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/generator/examples/go.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/generator/examples/grpc-gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/generator/examples/grpc-gateway.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/generator/examples/validate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/generator/examples/validate.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/generator/generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/generator/generator.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/linter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/linter.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/comment-enum-value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/comment-enum-value.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/comment-enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/comment-enum.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/comment-field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/comment-field.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/comment-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/comment-message.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/comment-oneof.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/comment-oneof.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/comment-rpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/comment-rpc.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/comment-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/comment-service.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/directory-same-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/directory-same-package.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/enum-first-value-zero.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/enum-first-value-zero.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/enum-no-allow-alias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/enum-no-allow-alias.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/enum-pascal-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/enum-pascal-case.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/enum-value-prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/enum-value-prefix.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/enum-value-upper-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/enum-value-upper-snake-case.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/enum-zero-value-suffix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/enum-zero-value-suffix.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/field-lower-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/field-lower-snake-case.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/file-lower-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/file-lower-snake-case.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/import-no-public.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/import-no-public.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/import-no-weak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/import-no-weak.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/import-used.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/import-used.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/message-pascal-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/message-pascal-case.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/oneof-lower-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/oneof-lower-snake-case.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/package-defined.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/package-defined.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/package-directory-match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/package-directory-match.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/package-lower-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/package-lower-snake-case.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/package-same-csharp-namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/package-same-csharp-namespace.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/package-same-directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/package-same-directory.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/package-same-go-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/package-same-go-package.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/package-same-java-multiple-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/package-same-java-multiple-files.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/package-same-java-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/package-same-java-package.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/package-same-php-namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/package-same-php-namespace.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/package-same-ruby-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/package-same-ruby-package.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/package-same-swift-prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/package-same-swift-prefix.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/package-version-suffix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/package-version-suffix.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/rpc-no-client-streaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/rpc-no-client-streaming.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/rpc-no-server-streaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/rpc-no-server-streaming.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/rpc-pascal-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/rpc-pascal-case.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/rpc-request-response-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/rpc-request-response-unique.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/rpc-request-standard-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/rpc-request-standard-name.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/rpc-response-standard-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/rpc-response-standard-name.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/service-pascal-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/service-pascal-case.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/linter/rules/service-suffix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/linter/rules/service-suffix.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/package-manager/easyp-vs-buf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/package-manager/easyp-vs-buf.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/cli/package-manager/package-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/cli/package-manager/package-manager.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/introduction/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/introduction/install.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/introduction/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/introduction/quickstart.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/introduction/what-is.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/introduction/what-is.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/migration/buf-cli.md: -------------------------------------------------------------------------------- 1 | # Buf CLI 2 | 3 | ## В работе -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/migration/protoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/migration/protoc.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/migration/protolock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/migration/protolock.md -------------------------------------------------------------------------------- /docs/dist/docs/ru-guide/migration/prototool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/docs/ru-guide/migration/prototool.md -------------------------------------------------------------------------------- /docs/dist/favicon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/favicon-16.png -------------------------------------------------------------------------------- /docs/dist/favicon-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/favicon-16.svg -------------------------------------------------------------------------------- /docs/dist/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/favicon-32.png -------------------------------------------------------------------------------- /docs/dist/favicon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/favicon-512.png -------------------------------------------------------------------------------- /docs/dist/favicon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/favicon.icns -------------------------------------------------------------------------------- /docs/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/favicon.ico -------------------------------------------------------------------------------- /docs/dist/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/favicon.svg -------------------------------------------------------------------------------- /docs/dist/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/icon-192.png -------------------------------------------------------------------------------- /docs/dist/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/icon-512.png -------------------------------------------------------------------------------- /docs/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/index.html -------------------------------------------------------------------------------- /docs/dist/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/dist/site.webmanifest -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.html.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/index.html.backup -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/postcss.config.js -------------------------------------------------------------------------------- /docs/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/public/apple-touch-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/apple-touch-icon.svg -------------------------------------------------------------------------------- /docs/public/docs/blog/finally-give-up-gin-echo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/blog/finally-give-up-gin-echo.md -------------------------------------------------------------------------------- /docs/public/docs/blog/working-with-proto-errors-correctly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/blog/working-with-proto-errors-correctly.md -------------------------------------------------------------------------------- /docs/public/docs/guide/api-service/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/api-service/overview.md -------------------------------------------------------------------------------- /docs/public/docs/guide/ci-cd/github-actions.md: -------------------------------------------------------------------------------- 1 | # Github Actions 2 | 3 | ## Work in progress -------------------------------------------------------------------------------- /docs/public/docs/guide/ci-cd/gitlab.md: -------------------------------------------------------------------------------- 1 | # Gitlab 2 | 3 | ## Work in progress -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/auto-completion/auto-completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/auto-completion/auto-completion.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/breaking-changes/breaking-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/breaking-changes/breaking-changes.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/breaking-changes/rules/enum-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/breaking-changes/rules/enum-no-delete.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/breaking-changes/rules/enum-value-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/breaking-changes/rules/enum-value-no-delete.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/breaking-changes/rules/enum-value-same-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/breaking-changes/rules/enum-value-same-name.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/breaking-changes/rules/field-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/breaking-changes/rules/field-no-delete.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/breaking-changes/rules/field-same-cardinality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/breaking-changes/rules/field-same-cardinality.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/breaking-changes/rules/field-same-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/breaking-changes/rules/field-same-type.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/breaking-changes/rules/import-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/breaking-changes/rules/import-no-delete.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/breaking-changes/rules/message-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/breaking-changes/rules/message-no-delete.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/breaking-changes/rules/oneof-field-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/breaking-changes/rules/oneof-field-no-delete.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/breaking-changes/rules/oneof-field-same-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/breaking-changes/rules/oneof-field-same-type.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/breaking-changes/rules/oneof-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/breaking-changes/rules/oneof-no-delete.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/breaking-changes/rules/rpc-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/breaking-changes/rules/rpc-no-delete.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/breaking-changes/rules/rpc-same-request-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/breaking-changes/rules/rpc-same-request-type.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/breaking-changes/rules/rpc-same-response-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/breaking-changes/rules/rpc-same-response-type.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/breaking-changes/rules/service-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/breaking-changes/rules/service-no-delete.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/configuration/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/configuration/configuration.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/generator/examples/go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/generator/examples/go.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/generator/examples/grpc-gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/generator/examples/grpc-gateway.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/generator/examples/validate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/generator/examples/validate.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/generator/generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/generator/generator.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/linter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/linter.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/comment-enum-value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/comment-enum-value.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/comment-enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/comment-enum.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/comment-field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/comment-field.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/comment-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/comment-message.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/comment-oneof.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/comment-oneof.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/comment-rpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/comment-rpc.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/comment-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/comment-service.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/directory-same-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/directory-same-package.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/enum-first-value-zero.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/enum-first-value-zero.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/enum-no-allow-alias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/enum-no-allow-alias.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/enum-pascal-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/enum-pascal-case.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/enum-value-prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/enum-value-prefix.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/enum-value-upper-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/enum-value-upper-snake-case.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/enum-zero-value-suffix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/enum-zero-value-suffix.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/field-lower-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/field-lower-snake-case.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/file-lower-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/file-lower-snake-case.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/import-no-public.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/import-no-public.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/import-no-weak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/import-no-weak.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/import-used.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/import-used.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/message-pascal-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/message-pascal-case.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/oneof-lower-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/oneof-lower-snake-case.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/package-defined.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/package-defined.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/package-directory-match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/package-directory-match.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/package-lower-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/package-lower-snake-case.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/package-same-csharp-namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/package-same-csharp-namespace.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/package-same-directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/package-same-directory.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/package-same-go-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/package-same-go-package.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/package-same-java-multiple-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/package-same-java-multiple-files.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/package-same-java-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/package-same-java-package.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/package-same-php-namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/package-same-php-namespace.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/package-same-ruby-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/package-same-ruby-package.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/package-same-swift-prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/package-same-swift-prefix.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/package-version-suffix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/package-version-suffix.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/rpc-no-client-streaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/rpc-no-client-streaming.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/rpc-no-server-streaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/rpc-no-server-streaming.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/rpc-pascal-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/rpc-pascal-case.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/rpc-request-response-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/rpc-request-response-unique.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/rpc-request-standard-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/rpc-request-standard-name.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/rpc-response-standard-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/rpc-response-standard-name.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/service-pascal-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/service-pascal-case.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/linter/rules/service-suffix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/linter/rules/service-suffix.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/package-manager/easyp-vs-buf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/package-manager/easyp-vs-buf.md -------------------------------------------------------------------------------- /docs/public/docs/guide/cli/package-manager/package-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/cli/package-manager/package-manager.md -------------------------------------------------------------------------------- /docs/public/docs/guide/introduction/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/introduction/install.md -------------------------------------------------------------------------------- /docs/public/docs/guide/introduction/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/introduction/quickstart.md -------------------------------------------------------------------------------- /docs/public/docs/guide/introduction/what-is.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/guide/introduction/what-is.md -------------------------------------------------------------------------------- /docs/public/docs/guide/migration/buf-cli.md: -------------------------------------------------------------------------------- 1 | # Buf CLI 2 | 3 | ## Work in progress -------------------------------------------------------------------------------- /docs/public/docs/guide/migration/protoc.md: -------------------------------------------------------------------------------- 1 | # Protoc 2 | 3 | ## Work in progress -------------------------------------------------------------------------------- /docs/public/docs/guide/migration/protolock.md: -------------------------------------------------------------------------------- 1 | # Protolock 2 | 3 | ## Work in progress -------------------------------------------------------------------------------- /docs/public/docs/guide/migration/prototool.md: -------------------------------------------------------------------------------- 1 | # Prototool 2 | 3 | ## Work in progress -------------------------------------------------------------------------------- /docs/public/docs/ru-blog/finally-give-up-gin-echo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-blog/finally-give-up-gin-echo.md -------------------------------------------------------------------------------- /docs/public/docs/ru-blog/working-with-proto-errors-correctly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-blog/working-with-proto-errors-correctly.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/TRANSLATION_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/TRANSLATION_STATUS.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/api-service/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/api-service/overview.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/ci-cd/github-actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/ci-cd/github-actions.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/ci-cd/gitlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/ci-cd/gitlab.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/auto-completion/auto-completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/auto-completion/auto-completion.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/breaking-changes/breaking-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/breaking-changes/breaking-changes.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/breaking-changes/rules/enum-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/breaking-changes/rules/enum-no-delete.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/breaking-changes/rules/enum-value-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/breaking-changes/rules/enum-value-no-delete.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/breaking-changes/rules/enum-value-same-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/breaking-changes/rules/enum-value-same-name.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/breaking-changes/rules/field-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/breaking-changes/rules/field-no-delete.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/breaking-changes/rules/field-same-cardinality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/breaking-changes/rules/field-same-cardinality.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/breaking-changes/rules/field-same-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/breaking-changes/rules/field-same-type.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/breaking-changes/rules/import-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/breaking-changes/rules/import-no-delete.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/breaking-changes/rules/message-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/breaking-changes/rules/message-no-delete.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/breaking-changes/rules/oneof-field-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/breaking-changes/rules/oneof-field-no-delete.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/breaking-changes/rules/oneof-field-same-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/breaking-changes/rules/oneof-field-same-type.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/breaking-changes/rules/oneof-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/breaking-changes/rules/oneof-no-delete.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/breaking-changes/rules/rpc-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/breaking-changes/rules/rpc-no-delete.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/breaking-changes/rules/rpc-same-request-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/breaking-changes/rules/rpc-same-request-type.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/breaking-changes/rules/rpc-same-response-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/breaking-changes/rules/rpc-same-response-type.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/breaking-changes/rules/service-no-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/breaking-changes/rules/service-no-delete.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/configuration/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/configuration/configuration.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/generator/examples/go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/generator/examples/go.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/generator/examples/grpc-gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/generator/examples/grpc-gateway.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/generator/examples/validate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/generator/examples/validate.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/generator/generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/generator/generator.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/linter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/linter.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/comment-enum-value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/comment-enum-value.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/comment-enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/comment-enum.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/comment-field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/comment-field.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/comment-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/comment-message.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/comment-oneof.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/comment-oneof.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/comment-rpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/comment-rpc.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/comment-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/comment-service.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/directory-same-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/directory-same-package.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/enum-first-value-zero.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/enum-first-value-zero.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/enum-no-allow-alias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/enum-no-allow-alias.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/enum-pascal-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/enum-pascal-case.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/enum-value-prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/enum-value-prefix.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/enum-value-upper-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/enum-value-upper-snake-case.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/enum-zero-value-suffix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/enum-zero-value-suffix.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/field-lower-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/field-lower-snake-case.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/file-lower-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/file-lower-snake-case.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/import-no-public.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/import-no-public.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/import-no-weak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/import-no-weak.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/import-used.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/import-used.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/message-pascal-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/message-pascal-case.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/oneof-lower-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/oneof-lower-snake-case.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/package-defined.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/package-defined.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/package-directory-match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/package-directory-match.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/package-lower-snake-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/package-lower-snake-case.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/package-same-csharp-namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/package-same-csharp-namespace.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/package-same-directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/package-same-directory.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/package-same-go-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/package-same-go-package.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/package-same-java-multiple-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/package-same-java-multiple-files.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/package-same-java-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/package-same-java-package.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/package-same-php-namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/package-same-php-namespace.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/package-same-ruby-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/package-same-ruby-package.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/package-same-swift-prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/package-same-swift-prefix.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/package-version-suffix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/package-version-suffix.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/rpc-no-client-streaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/rpc-no-client-streaming.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/rpc-no-server-streaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/rpc-no-server-streaming.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/rpc-pascal-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/rpc-pascal-case.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/rpc-request-response-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/rpc-request-response-unique.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/rpc-request-standard-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/rpc-request-standard-name.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/rpc-response-standard-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/rpc-response-standard-name.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/service-pascal-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/service-pascal-case.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/linter/rules/service-suffix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/linter/rules/service-suffix.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/package-manager/easyp-vs-buf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/package-manager/easyp-vs-buf.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/cli/package-manager/package-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/cli/package-manager/package-manager.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/introduction/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/introduction/install.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/introduction/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/introduction/quickstart.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/introduction/what-is.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/introduction/what-is.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/migration/buf-cli.md: -------------------------------------------------------------------------------- 1 | # Buf CLI 2 | 3 | ## В работе -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/migration/protoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/migration/protoc.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/migration/protolock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/migration/protolock.md -------------------------------------------------------------------------------- /docs/public/docs/ru-guide/migration/prototool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/docs/ru-guide/migration/prototool.md -------------------------------------------------------------------------------- /docs/public/favicon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/favicon-16.png -------------------------------------------------------------------------------- /docs/public/favicon-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/favicon-16.svg -------------------------------------------------------------------------------- /docs/public/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/favicon-32.png -------------------------------------------------------------------------------- /docs/public/favicon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/favicon-512.png -------------------------------------------------------------------------------- /docs/public/favicon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/favicon.icns -------------------------------------------------------------------------------- /docs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/favicon.ico -------------------------------------------------------------------------------- /docs/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/favicon.svg -------------------------------------------------------------------------------- /docs/public/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/icon-192.png -------------------------------------------------------------------------------- /docs/public/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/icon-512.png -------------------------------------------------------------------------------- /docs/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/public/site.webmanifest -------------------------------------------------------------------------------- /docs/scripts/migrate-vitepress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/scripts/migrate-vitepress.js -------------------------------------------------------------------------------- /docs/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/App.tsx -------------------------------------------------------------------------------- /docs/src/assets/icons/easyp-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/assets/icons/easyp-logo.svg -------------------------------------------------------------------------------- /docs/src/components/ArchitectureComparison.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/components/ArchitectureComparison.tsx -------------------------------------------------------------------------------- /docs/src/components/EasyPLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/components/EasyPLogo.tsx -------------------------------------------------------------------------------- /docs/src/components/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/components/ErrorBoundary.tsx -------------------------------------------------------------------------------- /docs/src/components/FeatureSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/components/FeatureSwitcher.tsx -------------------------------------------------------------------------------- /docs/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/components/Footer.tsx -------------------------------------------------------------------------------- /docs/src/components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/components/Hero.tsx -------------------------------------------------------------------------------- /docs/src/components/LanguageSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/components/LanguageSwitcher.tsx -------------------------------------------------------------------------------- /docs/src/components/Mermaid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/components/Mermaid.tsx -------------------------------------------------------------------------------- /docs/src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/components/Navbar.tsx -------------------------------------------------------------------------------- /docs/src/components/RegistryPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/components/RegistryPreview.tsx -------------------------------------------------------------------------------- /docs/src/components/Snowflakes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/components/Snowflakes.tsx -------------------------------------------------------------------------------- /docs/src/components/TrustedBy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/components/TrustedBy.tsx -------------------------------------------------------------------------------- /docs/src/components/docs/DocsHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/components/docs/DocsHeader.tsx -------------------------------------------------------------------------------- /docs/src/components/docs/DocsLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/components/docs/DocsLayout.tsx -------------------------------------------------------------------------------- /docs/src/components/docs/DocsSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/components/docs/DocsSidebar.tsx -------------------------------------------------------------------------------- /docs/src/components/docs/MarkdownPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/components/docs/MarkdownPage.tsx -------------------------------------------------------------------------------- /docs/src/components/docs/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/components/docs/NotFound.tsx -------------------------------------------------------------------------------- /docs/src/components/docs/SidebarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/components/docs/SidebarItem.tsx -------------------------------------------------------------------------------- /docs/src/config/sidebar.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/config/sidebar.en.json -------------------------------------------------------------------------------- /docs/src/config/sidebar.ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/config/sidebar.ru.json -------------------------------------------------------------------------------- /docs/src/contexts/TocContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/contexts/TocContext.tsx -------------------------------------------------------------------------------- /docs/src/i18n/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/i18n/config.ts -------------------------------------------------------------------------------- /docs/src/i18n/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/i18n/locales/en.json -------------------------------------------------------------------------------- /docs/src/i18n/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/i18n/locales/ru.json -------------------------------------------------------------------------------- /docs/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/index.css -------------------------------------------------------------------------------- /docs/src/lib/markdown/ExampleUsage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/ExampleUsage.tsx -------------------------------------------------------------------------------- /docs/src/lib/markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/README.md -------------------------------------------------------------------------------- /docs/src/lib/markdown/components/CodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/components/CodeBlock.tsx -------------------------------------------------------------------------------- /docs/src/lib/markdown/components/CustomBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/components/CustomBlock.tsx -------------------------------------------------------------------------------- /docs/src/lib/markdown/components/Heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/components/Heading.tsx -------------------------------------------------------------------------------- /docs/src/lib/markdown/components/MarkdownContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/components/MarkdownContent.tsx -------------------------------------------------------------------------------- /docs/src/lib/markdown/components/TableOfContents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/components/TableOfContents.tsx -------------------------------------------------------------------------------- /docs/src/lib/markdown/demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/demo.tsx -------------------------------------------------------------------------------- /docs/src/lib/markdown/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/example.md -------------------------------------------------------------------------------- /docs/src/lib/markdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/index.ts -------------------------------------------------------------------------------- /docs/src/lib/markdown/plugins/codeFocus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/plugins/codeFocus.tsx -------------------------------------------------------------------------------- /docs/src/lib/markdown/plugins/htmlBlocks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/plugins/htmlBlocks.tsx -------------------------------------------------------------------------------- /docs/src/lib/markdown/plugins/links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/plugins/links.tsx -------------------------------------------------------------------------------- /docs/src/lib/markdown/plugins/mermaid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/plugins/mermaid.tsx -------------------------------------------------------------------------------- /docs/src/lib/markdown/plugins/toc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/plugins/toc.tsx -------------------------------------------------------------------------------- /docs/src/lib/markdown/processor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/processor.tsx -------------------------------------------------------------------------------- /docs/src/lib/markdown/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/styles.css -------------------------------------------------------------------------------- /docs/src/lib/markdown/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/types.ts -------------------------------------------------------------------------------- /docs/src/lib/markdown/utils/frontmatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/utils/frontmatter.ts -------------------------------------------------------------------------------- /docs/src/lib/markdown/utils/headings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/utils/headings.ts -------------------------------------------------------------------------------- /docs/src/lib/markdown/utils/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/utils/paths.ts -------------------------------------------------------------------------------- /docs/src/lib/markdown/utils/prismTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/lib/markdown/utils/prismTheme.ts -------------------------------------------------------------------------------- /docs/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/main.tsx -------------------------------------------------------------------------------- /docs/src/pages/BlogPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/pages/BlogPage.tsx -------------------------------------------------------------------------------- /docs/src/pages/BlogPostPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/pages/BlogPostPage.tsx -------------------------------------------------------------------------------- /docs/src/pages/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/pages/HomePage.tsx -------------------------------------------------------------------------------- /docs/src/routes/DocsRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/routes/DocsRoutes.tsx -------------------------------------------------------------------------------- /docs/src/types/sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/types/sidebar.ts -------------------------------------------------------------------------------- /docs/src/utils/extractHeadings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/utils/extractHeadings.ts -------------------------------------------------------------------------------- /docs/src/utils/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/utils/github.ts -------------------------------------------------------------------------------- /docs/src/utils/parseBadGood.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/utils/parseBadGood.ts -------------------------------------------------------------------------------- /docs/src/utils/sidebarUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/utils/sidebarUtils.ts -------------------------------------------------------------------------------- /docs/src/utils/useMarkdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/src/utils/useMarkdown.ts -------------------------------------------------------------------------------- /docs/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/tailwind.config.js -------------------------------------------------------------------------------- /docs/test-pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/test-pagination.ts -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/tsconfig.tsbuildinfo -------------------------------------------------------------------------------- /docs/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/docs/vite.config.ts -------------------------------------------------------------------------------- /easyp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/easyp.yaml -------------------------------------------------------------------------------- /example.easyp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/example.easyp.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/go.sum -------------------------------------------------------------------------------- /internal/adapters/console/bash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/console/bash.go -------------------------------------------------------------------------------- /internal/adapters/console/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/console/error.go -------------------------------------------------------------------------------- /internal/adapters/console/new.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/console/new.go -------------------------------------------------------------------------------- /internal/adapters/console/powershell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/console/powershell.go -------------------------------------------------------------------------------- /internal/adapters/go_git/get_dir_walker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/go_git/get_dir_walker.go -------------------------------------------------------------------------------- /internal/adapters/go_git/go_git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/go_git/go_git.go -------------------------------------------------------------------------------- /internal/adapters/lock_file/deps_iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/lock_file/deps_iter.go -------------------------------------------------------------------------------- /internal/adapters/lock_file/is_empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/lock_file/is_empty.go -------------------------------------------------------------------------------- /internal/adapters/lock_file/lock_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/lock_file/lock_file.go -------------------------------------------------------------------------------- /internal/adapters/lock_file/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/lock_file/read.go -------------------------------------------------------------------------------- /internal/adapters/lock_file/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/lock_file/write.go -------------------------------------------------------------------------------- /internal/adapters/module_config/module_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/module_config/module_config.go -------------------------------------------------------------------------------- /internal/adapters/module_config/read_buf_work.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/module_config/read_buf_work.go -------------------------------------------------------------------------------- /internal/adapters/module_config/read_easyp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/module_config/read_easyp.go -------------------------------------------------------------------------------- /internal/adapters/module_config/read_from_repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/module_config/read_from_repo.go -------------------------------------------------------------------------------- /internal/adapters/plugin/builtin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/builtin.go -------------------------------------------------------------------------------- /internal/adapters/plugin/builtin_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/builtin_impl.go -------------------------------------------------------------------------------- /internal/adapters/plugin/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/command.go -------------------------------------------------------------------------------- /internal/adapters/plugin/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/interface.go -------------------------------------------------------------------------------- /internal/adapters/plugin/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/local.go -------------------------------------------------------------------------------- /internal/adapters/plugin/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/remote.go -------------------------------------------------------------------------------- /internal/adapters/plugin/wasm/grpc_cpp_plugin.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/wasm/grpc_cpp_plugin.wasm -------------------------------------------------------------------------------- /internal/adapters/plugin/wasm/grpc_csharp_plugin.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/wasm/grpc_csharp_plugin.wasm -------------------------------------------------------------------------------- /internal/adapters/plugin/wasm/grpc_node_plugin.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/wasm/grpc_node_plugin.wasm -------------------------------------------------------------------------------- /internal/adapters/plugin/wasm/grpc_objective_c_plugin.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/wasm/grpc_objective_c_plugin.wasm -------------------------------------------------------------------------------- /internal/adapters/plugin/wasm/grpc_php_plugin.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/wasm/grpc_php_plugin.wasm -------------------------------------------------------------------------------- /internal/adapters/plugin/wasm/grpc_python_plugin.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/wasm/grpc_python_plugin.wasm -------------------------------------------------------------------------------- /internal/adapters/plugin/wasm/grpc_ruby_plugin.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/wasm/grpc_ruby_plugin.wasm -------------------------------------------------------------------------------- /internal/adapters/plugin/wasm/memory.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/wasm/memory.wasm -------------------------------------------------------------------------------- /internal/adapters/plugin/wasm/memory.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/wasm/memory.wat -------------------------------------------------------------------------------- /internal/adapters/plugin/wasm/protoc-gen-cpp.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/wasm/protoc-gen-cpp.wasm -------------------------------------------------------------------------------- /internal/adapters/plugin/wasm/protoc-gen-csharp.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/wasm/protoc-gen-csharp.wasm -------------------------------------------------------------------------------- /internal/adapters/plugin/wasm/protoc-gen-objc.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/wasm/protoc-gen-objc.wasm -------------------------------------------------------------------------------- /internal/adapters/plugin/wasm/protoc-gen-php.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/wasm/protoc-gen-php.wasm -------------------------------------------------------------------------------- /internal/adapters/plugin/wasm/protoc-gen-python.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/wasm/protoc-gen-python.wasm -------------------------------------------------------------------------------- /internal/adapters/plugin/wasm/protoc-gen-ruby.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/wasm/protoc-gen-ruby.wasm -------------------------------------------------------------------------------- /internal/adapters/plugin/wasm_embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/plugin/wasm_embed.go -------------------------------------------------------------------------------- /internal/adapters/repository/git/archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/repository/git/archive.go -------------------------------------------------------------------------------- /internal/adapters/repository/git/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/repository/git/fetch.go -------------------------------------------------------------------------------- /internal/adapters/repository/git/get_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/repository/git/get_files.go -------------------------------------------------------------------------------- /internal/adapters/repository/git/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/repository/git/git.go -------------------------------------------------------------------------------- /internal/adapters/repository/git/read_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/repository/git/read_file.go -------------------------------------------------------------------------------- /internal/adapters/repository/git/read_revision.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/repository/git/read_revision.go -------------------------------------------------------------------------------- /internal/adapters/repository/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/repository/repository.go -------------------------------------------------------------------------------- /internal/adapters/storage/cache_download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/storage/cache_download.go -------------------------------------------------------------------------------- /internal/adapters/storage/create_cache_repository_dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/storage/create_cache_repository_dir.go -------------------------------------------------------------------------------- /internal/adapters/storage/get_cache_download_paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/storage/get_cache_download_paths.go -------------------------------------------------------------------------------- /internal/adapters/storage/get_cache_download_paths_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/storage/get_cache_download_paths_test.go -------------------------------------------------------------------------------- /internal/adapters/storage/get_install_dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/storage/get_install_dir.go -------------------------------------------------------------------------------- /internal/adapters/storage/get_install_dir_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/storage/get_install_dir_test.go -------------------------------------------------------------------------------- /internal/adapters/storage/get_installed_module_hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/storage/get_installed_module_hash.go -------------------------------------------------------------------------------- /internal/adapters/storage/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/storage/install.go -------------------------------------------------------------------------------- /internal/adapters/storage/install_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/storage/install_test.go -------------------------------------------------------------------------------- /internal/adapters/storage/is_module_installed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/storage/is_module_installed.go -------------------------------------------------------------------------------- /internal/adapters/storage/is_module_installed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/storage/is_module_installed_test.go -------------------------------------------------------------------------------- /internal/adapters/storage/mocks/LockFile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/storage/mocks/LockFile.go -------------------------------------------------------------------------------- /internal/adapters/storage/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/storage/sanitize.go -------------------------------------------------------------------------------- /internal/adapters/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/storage/storage.go -------------------------------------------------------------------------------- /internal/adapters/storage/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/adapters/storage/storage_test.go -------------------------------------------------------------------------------- /internal/api/breaking_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/api/breaking_check.go -------------------------------------------------------------------------------- /internal/api/completion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/api/completion.go -------------------------------------------------------------------------------- /internal/api/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/api/enum.go -------------------------------------------------------------------------------- /internal/api/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/api/generate.go -------------------------------------------------------------------------------- /internal/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/api/init.go -------------------------------------------------------------------------------- /internal/api/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/api/interface.go -------------------------------------------------------------------------------- /internal/api/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/api/lint.go -------------------------------------------------------------------------------- /internal/api/mod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/api/mod.go -------------------------------------------------------------------------------- /internal/api/temporaly_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/api/temporaly_helper.go -------------------------------------------------------------------------------- /internal/config/breaking_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/config/breaking_check.go -------------------------------------------------------------------------------- /internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/config/config.go -------------------------------------------------------------------------------- /internal/config/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/config/default.go -------------------------------------------------------------------------------- /internal/config/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/config/lint.go -------------------------------------------------------------------------------- /internal/core/breaking_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/breaking_check.go -------------------------------------------------------------------------------- /internal/core/breaking_checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/breaking_checker.go -------------------------------------------------------------------------------- /internal/core/breaking_checker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/breaking_checker_test.go -------------------------------------------------------------------------------- /internal/core/check_lint_ignore.go: -------------------------------------------------------------------------------- 1 | package core 2 | -------------------------------------------------------------------------------- /internal/core/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/core.go -------------------------------------------------------------------------------- /internal/core/dom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/dom.go -------------------------------------------------------------------------------- /internal/core/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/download.go -------------------------------------------------------------------------------- /internal/core/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/fs.go -------------------------------------------------------------------------------- /internal/core/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/generate.go -------------------------------------------------------------------------------- /internal/core/generate_bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/generate_bucket.go -------------------------------------------------------------------------------- /internal/core/generate_insertion_point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/generate_insertion_point.go -------------------------------------------------------------------------------- /internal/core/generate_insertion_point_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/generate_insertion_point_test.go -------------------------------------------------------------------------------- /internal/core/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/get.go -------------------------------------------------------------------------------- /internal/core/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/init.go -------------------------------------------------------------------------------- /internal/core/instruction_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/instruction_parser.go -------------------------------------------------------------------------------- /internal/core/instruction_parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/instruction_parser_test.go -------------------------------------------------------------------------------- /internal/core/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/lint.go -------------------------------------------------------------------------------- /internal/core/mocks/Console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/mocks/Console.go -------------------------------------------------------------------------------- /internal/core/mocks/CurrentProjectGitWalker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/mocks/CurrentProjectGitWalker.go -------------------------------------------------------------------------------- /internal/core/mocks/LockFile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/mocks/LockFile.go -------------------------------------------------------------------------------- /internal/core/mocks/ModuleConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/mocks/ModuleConfig.go -------------------------------------------------------------------------------- /internal/core/mocks/Rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/mocks/Rule.go -------------------------------------------------------------------------------- /internal/core/mocks/Storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/mocks/Storage.go -------------------------------------------------------------------------------- /internal/core/mod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/mod.go -------------------------------------------------------------------------------- /internal/core/models/cache_download_paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/models/cache_download_paths.go -------------------------------------------------------------------------------- /internal/core/models/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/models/errors.go -------------------------------------------------------------------------------- /internal/core/models/lock_file_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/models/lock_file_info.go -------------------------------------------------------------------------------- /internal/core/models/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/models/module.go -------------------------------------------------------------------------------- /internal/core/models/module_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/models/module_config.go -------------------------------------------------------------------------------- /internal/core/models/module_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/models/module_test.go -------------------------------------------------------------------------------- /internal/core/models/revision.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/models/revision.go -------------------------------------------------------------------------------- /internal/core/path_helpers/is_target_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/path_helpers/is_target_path.go -------------------------------------------------------------------------------- /internal/core/path_helpers/is_target_path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/path_helpers/is_target_path_test.go -------------------------------------------------------------------------------- /internal/core/proto_info_read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/proto_info_read.go -------------------------------------------------------------------------------- /internal/core/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/update.go -------------------------------------------------------------------------------- /internal/core/vendor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/core/vendor.go -------------------------------------------------------------------------------- /internal/flags/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/flags/flags.go -------------------------------------------------------------------------------- /internal/fs/fs/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/fs/fs/adapter.go -------------------------------------------------------------------------------- /internal/fs/fs/dir_walker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/fs/fs/dir_walker.go -------------------------------------------------------------------------------- /internal/fs/go_git/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/fs/go_git/adapter.go -------------------------------------------------------------------------------- /internal/fs/go_git/dir_walker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/fs/go_git/dir_walker.go -------------------------------------------------------------------------------- /internal/rules/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/builder.go -------------------------------------------------------------------------------- /internal/rules/check_lint_ignore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/check_lint_ignore_test.go -------------------------------------------------------------------------------- /internal/rules/comment_enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/comment_enum.go -------------------------------------------------------------------------------- /internal/rules/comment_enum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/comment_enum_test.go -------------------------------------------------------------------------------- /internal/rules/comment_enum_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/comment_enum_value.go -------------------------------------------------------------------------------- /internal/rules/comment_enum_value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/comment_enum_value_test.go -------------------------------------------------------------------------------- /internal/rules/comment_field_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/comment_field_message.go -------------------------------------------------------------------------------- /internal/rules/comment_field_message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/comment_field_message_test.go -------------------------------------------------------------------------------- /internal/rules/comment_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/comment_message.go -------------------------------------------------------------------------------- /internal/rules/comment_message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/comment_message_test.go -------------------------------------------------------------------------------- /internal/rules/comment_one_of.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/comment_one_of.go -------------------------------------------------------------------------------- /internal/rules/comment_one_of_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/comment_one_of_test.go -------------------------------------------------------------------------------- /internal/rules/comment_rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/comment_rpc.go -------------------------------------------------------------------------------- /internal/rules/comment_rpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/comment_rpc_test.go -------------------------------------------------------------------------------- /internal/rules/comment_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/comment_service.go -------------------------------------------------------------------------------- /internal/rules/comment_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/comment_service_test.go -------------------------------------------------------------------------------- /internal/rules/directory_same_package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/directory_same_package.go -------------------------------------------------------------------------------- /internal/rules/directory_same_package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/directory_same_package_test.go -------------------------------------------------------------------------------- /internal/rules/enum_first_value_zero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/enum_first_value_zero.go -------------------------------------------------------------------------------- /internal/rules/enum_first_value_zero_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/enum_first_value_zero_test.go -------------------------------------------------------------------------------- /internal/rules/enum_no_allow_alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/enum_no_allow_alias.go -------------------------------------------------------------------------------- /internal/rules/enum_no_allow_alias_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/enum_no_allow_alias_test.go -------------------------------------------------------------------------------- /internal/rules/enum_pascal_case.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/enum_pascal_case.go -------------------------------------------------------------------------------- /internal/rules/enum_pascal_case_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/enum_pascal_case_test.go -------------------------------------------------------------------------------- /internal/rules/enum_value_prefix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/enum_value_prefix.go -------------------------------------------------------------------------------- /internal/rules/enum_value_prefix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/enum_value_prefix_test.go -------------------------------------------------------------------------------- /internal/rules/enum_value_upper_snake_case.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/enum_value_upper_snake_case.go -------------------------------------------------------------------------------- /internal/rules/enum_value_upper_snake_case_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/enum_value_upper_snake_case_test.go -------------------------------------------------------------------------------- /internal/rules/enum_zero_value_suffix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/enum_zero_value_suffix.go -------------------------------------------------------------------------------- /internal/rules/enum_zero_value_suffix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/enum_zero_value_suffix_test.go -------------------------------------------------------------------------------- /internal/rules/file_lower_snake_case.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/file_lower_snake_case.go -------------------------------------------------------------------------------- /internal/rules/file_lower_snake_case_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/file_lower_snake_case_test.go -------------------------------------------------------------------------------- /internal/rules/import_no_public.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/import_no_public.go -------------------------------------------------------------------------------- /internal/rules/import_no_public_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/import_no_public_test.go -------------------------------------------------------------------------------- /internal/rules/import_no_weak.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/import_no_weak.go -------------------------------------------------------------------------------- /internal/rules/import_no_weak_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/import_no_weak_test.go -------------------------------------------------------------------------------- /internal/rules/import_used.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/import_used.go -------------------------------------------------------------------------------- /internal/rules/import_used_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/import_used_test.go -------------------------------------------------------------------------------- /internal/rules/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/init_test.go -------------------------------------------------------------------------------- /internal/rules/message_field_lower_snake_case.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/message_field_lower_snake_case.go -------------------------------------------------------------------------------- /internal/rules/message_field_lower_snake_case_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/message_field_lower_snake_case_test.go -------------------------------------------------------------------------------- /internal/rules/message_pascal_case.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/message_pascal_case.go -------------------------------------------------------------------------------- /internal/rules/message_pascal_case_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/message_pascal_case_test.go -------------------------------------------------------------------------------- /internal/rules/oneof_lower_snake_case.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/oneof_lower_snake_case.go -------------------------------------------------------------------------------- /internal/rules/oneof_lower_snake_case_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/oneof_lower_snake_case_test.go -------------------------------------------------------------------------------- /internal/rules/package_defined.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_defined.go -------------------------------------------------------------------------------- /internal/rules/package_defined_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_defined_test.go -------------------------------------------------------------------------------- /internal/rules/package_directory_match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_directory_match.go -------------------------------------------------------------------------------- /internal/rules/package_directory_match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_directory_match_test.go -------------------------------------------------------------------------------- /internal/rules/package_lower_snake_case.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_lower_snake_case.go -------------------------------------------------------------------------------- /internal/rules/package_lower_snake_case_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_lower_snake_case_test.go -------------------------------------------------------------------------------- /internal/rules/package_no_import_cycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_no_import_cycle.go -------------------------------------------------------------------------------- /internal/rules/package_same_csharp_namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_same_csharp_namespace.go -------------------------------------------------------------------------------- /internal/rules/package_same_csharp_namespace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_same_csharp_namespace_test.go -------------------------------------------------------------------------------- /internal/rules/package_same_directory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_same_directory.go -------------------------------------------------------------------------------- /internal/rules/package_same_directory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_same_directory_test.go -------------------------------------------------------------------------------- /internal/rules/package_same_go_package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_same_go_package.go -------------------------------------------------------------------------------- /internal/rules/package_same_go_package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_same_go_package_test.go -------------------------------------------------------------------------------- /internal/rules/package_same_java_multiple_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_same_java_multiple_files.go -------------------------------------------------------------------------------- /internal/rules/package_same_java_multiple_files_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_same_java_multiple_files_test.go -------------------------------------------------------------------------------- /internal/rules/package_same_java_package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_same_java_package.go -------------------------------------------------------------------------------- /internal/rules/package_same_java_package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_same_java_package_test.go -------------------------------------------------------------------------------- /internal/rules/package_same_php_namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_same_php_namespace.go -------------------------------------------------------------------------------- /internal/rules/package_same_php_namespace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_same_php_namespace_test.go -------------------------------------------------------------------------------- /internal/rules/package_same_ruby_package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_same_ruby_package.go -------------------------------------------------------------------------------- /internal/rules/package_same_ruby_package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_same_ruby_package_test.go -------------------------------------------------------------------------------- /internal/rules/package_same_swift_prefix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_same_swift_prefix.go -------------------------------------------------------------------------------- /internal/rules/package_same_swift_prefix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_same_swift_prefix_test.go -------------------------------------------------------------------------------- /internal/rules/package_version_suffix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_version_suffix.go -------------------------------------------------------------------------------- /internal/rules/package_version_suffix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/package_version_suffix_test.go -------------------------------------------------------------------------------- /internal/rules/protovalidate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/protovalidate.go -------------------------------------------------------------------------------- /internal/rules/rpc_no_client_streaming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/rpc_no_client_streaming.go -------------------------------------------------------------------------------- /internal/rules/rpc_no_client_streaming_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/rpc_no_client_streaming_test.go -------------------------------------------------------------------------------- /internal/rules/rpc_no_server_streaming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/rpc_no_server_streaming.go -------------------------------------------------------------------------------- /internal/rules/rpc_no_server_streaming_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/rpc_no_server_streaming_test.go -------------------------------------------------------------------------------- /internal/rules/rpc_pascal_case.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/rpc_pascal_case.go -------------------------------------------------------------------------------- /internal/rules/rpc_pascal_case_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/rpc_pascal_case_test.go -------------------------------------------------------------------------------- /internal/rules/rpc_request_response_unique.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/rpc_request_response_unique.go -------------------------------------------------------------------------------- /internal/rules/rpc_request_response_unique_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/rpc_request_response_unique_test.go -------------------------------------------------------------------------------- /internal/rules/rpc_request_standard_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/rpc_request_standard_name.go -------------------------------------------------------------------------------- /internal/rules/rpc_request_standard_name_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/rpc_request_standard_name_test.go -------------------------------------------------------------------------------- /internal/rules/rpc_response_standard_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/rpc_response_standard_name.go -------------------------------------------------------------------------------- /internal/rules/rpc_response_standard_name_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/rpc_response_standard_name_test.go -------------------------------------------------------------------------------- /internal/rules/service_pascal_case.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/service_pascal_case.go -------------------------------------------------------------------------------- /internal/rules/service_pascal_case_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/service_pascal_case_test.go -------------------------------------------------------------------------------- /internal/rules/service_suffix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/service_suffix.go -------------------------------------------------------------------------------- /internal/rules/service_suffix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/rules/service_suffix_test.go -------------------------------------------------------------------------------- /internal/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/internal/version/version.go -------------------------------------------------------------------------------- /testdata/api/session/v1/events.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/api/session/v1/events.proto -------------------------------------------------------------------------------- /testdata/api/session/v1/session.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/api/session/v1/session.proto -------------------------------------------------------------------------------- /testdata/auth/InvalidName.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/auth/InvalidName.proto -------------------------------------------------------------------------------- /testdata/auth/empty_pkg.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; -------------------------------------------------------------------------------- /testdata/auth/queue.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/auth/queue.proto -------------------------------------------------------------------------------- /testdata/auth/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/auth/service.proto -------------------------------------------------------------------------------- /testdata/breaking_check/broken/messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/breaking_check/broken/messages.proto -------------------------------------------------------------------------------- /testdata/breaking_check/broken/services.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/breaking_check/broken/services.proto -------------------------------------------------------------------------------- /testdata/breaking_check/not_broken/messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/breaking_check/not_broken/messages.proto -------------------------------------------------------------------------------- /testdata/breaking_check/not_broken/services.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/breaking_check/not_broken/services.proto -------------------------------------------------------------------------------- /testdata/breaking_check/original/messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/breaking_check/original/messages.proto -------------------------------------------------------------------------------- /testdata/breaking_check/original/services.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/breaking_check/original/services.proto -------------------------------------------------------------------------------- /testdata/import_used/enums.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/import_used/enums.proto -------------------------------------------------------------------------------- /testdata/import_used/field.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/import_used/field.proto -------------------------------------------------------------------------------- /testdata/import_used/for_one_of.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/import_used/for_one_of.proto -------------------------------------------------------------------------------- /testdata/import_used/messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/import_used/messages.proto -------------------------------------------------------------------------------- /testdata/import_used/not_used.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/import_used/not_used.proto -------------------------------------------------------------------------------- /testdata/import_used/options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/import_used/options.proto -------------------------------------------------------------------------------- /testdata/import_used/thrd_party/enums.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/import_used/thrd_party/enums.proto -------------------------------------------------------------------------------- /testdata/import_used/thrd_party/for_extends.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/import_used/thrd_party/for_extends.proto -------------------------------------------------------------------------------- /testdata/import_used/thrd_party/for_option.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/import_used/thrd_party/for_option.proto -------------------------------------------------------------------------------- /testdata/import_used/thrd_party/messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/import_used/thrd_party/messages.proto -------------------------------------------------------------------------------- /testdata/import_used/thrd_party/options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/import_used/thrd_party/options.proto -------------------------------------------------------------------------------- /testdata/import_used/thrd_party/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/import_used/thrd_party/types.proto -------------------------------------------------------------------------------- /testdata/import_used/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/import_used/types.proto -------------------------------------------------------------------------------- /testdata/import_used/used.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/import_used/used.proto -------------------------------------------------------------------------------- /testdata/invalid_options/queue.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/invalid_options/queue.proto -------------------------------------------------------------------------------- /testdata/invalid_options/session.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/invalid_options/session.proto -------------------------------------------------------------------------------- /testdata/invalid_pkg/queue.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/invalid_pkg/queue.proto -------------------------------------------------------------------------------- /testdata/invalid_pkg/session.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/invalid_pkg/session.proto -------------------------------------------------------------------------------- /testdata/no_lint/no_lint_buf_comment.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/no_lint/no_lint_buf_comment.proto -------------------------------------------------------------------------------- /testdata/no_lint/no_lint_easyp_comment.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/testdata/no_lint/no_lint_easyp_comment.proto -------------------------------------------------------------------------------- /wellknownimports/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/wellknownimports/embed.go -------------------------------------------------------------------------------- /wellknownimports/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/wellknownimports/google/protobuf/any.proto -------------------------------------------------------------------------------- /wellknownimports/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/wellknownimports/google/protobuf/api.proto -------------------------------------------------------------------------------- /wellknownimports/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/wellknownimports/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /wellknownimports/google/protobuf/cpp_features.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/wellknownimports/google/protobuf/cpp_features.proto -------------------------------------------------------------------------------- /wellknownimports/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/wellknownimports/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /wellknownimports/google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/wellknownimports/google/protobuf/duration.proto -------------------------------------------------------------------------------- /wellknownimports/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/wellknownimports/google/protobuf/empty.proto -------------------------------------------------------------------------------- /wellknownimports/google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/wellknownimports/google/protobuf/field_mask.proto -------------------------------------------------------------------------------- /wellknownimports/google/protobuf/java_features.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/wellknownimports/google/protobuf/java_features.proto -------------------------------------------------------------------------------- /wellknownimports/google/protobuf/source_context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/wellknownimports/google/protobuf/source_context.proto -------------------------------------------------------------------------------- /wellknownimports/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/wellknownimports/google/protobuf/struct.proto -------------------------------------------------------------------------------- /wellknownimports/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/wellknownimports/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /wellknownimports/google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/wellknownimports/google/protobuf/type.proto -------------------------------------------------------------------------------- /wellknownimports/google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyp-tech/easyp/HEAD/wellknownimports/google/protobuf/wrappers.proto --------------------------------------------------------------------------------