├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── GHPages.yml │ ├── ci.yml │ ├── format.yml │ └── test-build-resources-with-pandoc.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .puppeteer.json ├── .stackblitz └── codeflow.json ├── .stackblitzrc ├── .vitepress ├── config.mjs ├── lib │ ├── markdown-it-plugin-header-shift.mjs │ └── plantuml.tmlanguage.mjs └── theme │ ├── components │ ├── CustomLayout.vue │ ├── FutureStar.vue │ ├── PageInfo.vue │ ├── PageTitle.vue │ └── sns.js │ ├── index.mjs │ └── style.css ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── documents ├── common │ └── pandoc_styles │ │ ├── css │ │ └── style.css │ │ └── スタイル.docx ├── forAWSResource │ ├── AWSインフラリソース命名規約.md │ └── index.md ├── forJava │ ├── Javaコーディング規約.md │ ├── Javaコーディング規約_for_11.md │ ├── Javaコーディング規約_for_17.md │ ├── Javaコーディング規約_for_8.md │ └── index.md ├── forOpenAPISpecification │ ├── OpenAPI_Specification_2.0.md │ ├── OpenAPI_Specification_3.0.3.md │ ├── index.md │ └── sample_divided │ │ ├── common │ │ └── responses.yaml │ │ ├── examples │ │ ├── pets_get │ │ │ ├── test_case_001.yaml │ │ │ └── test_case_002.yaml │ │ ├── pets_pet_id_get │ │ │ └── test_case_003.yaml │ │ └── pets_post │ │ │ └── test_case_004.yaml │ │ ├── openapi.gen.yaml │ │ ├── openapi.yaml │ │ └── pets │ │ ├── pets.yaml │ │ └── pets_pet_id.yaml └── forSQL │ ├── SQLコーディング規約(Oracle).md │ ├── SQLコーディング規約(PostgreSQL).md │ └── index.md ├── eslint.config.mjs ├── index.md ├── package.json ├── public ├── documents │ └── forGitBranch │ │ ├── git_branch_standards.html │ │ └── index.html ├── images │ ├── JBee.png │ ├── JBee100.png │ ├── JBeeBlack.png │ ├── background3.jpg │ ├── logo-dark.svg │ ├── logo-system.svg │ └── logo.svg └── resources │ └── .gitkeep ├── renovate.json └── scripts └── pr-comment.mjs /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/GHPages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.github/workflows/GHPages.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/test-build-resources-with-pandoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.github/workflows/test-build-resources-with-pandoc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /docs/ 3 | 4 | # JetBrains 5 | .idea 6 | 7 | # WSL 8 | *:Zone.Identifier 9 | 10 | /.vitepress/cache 11 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | force=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /docs/ 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.prettierrc -------------------------------------------------------------------------------- /.puppeteer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.puppeteer.json -------------------------------------------------------------------------------- /.stackblitz/codeflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.stackblitz/codeflow.json -------------------------------------------------------------------------------- /.stackblitzrc: -------------------------------------------------------------------------------- 1 | { 2 | "startCommand": "npm run watch" 3 | } 4 | -------------------------------------------------------------------------------- /.vitepress/config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.vitepress/config.mjs -------------------------------------------------------------------------------- /.vitepress/lib/markdown-it-plugin-header-shift.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.vitepress/lib/markdown-it-plugin-header-shift.mjs -------------------------------------------------------------------------------- /.vitepress/lib/plantuml.tmlanguage.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.vitepress/lib/plantuml.tmlanguage.mjs -------------------------------------------------------------------------------- /.vitepress/theme/components/CustomLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.vitepress/theme/components/CustomLayout.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/FutureStar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.vitepress/theme/components/FutureStar.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/PageInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.vitepress/theme/components/PageInfo.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/PageTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.vitepress/theme/components/PageTitle.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/sns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.vitepress/theme/components/sns.js -------------------------------------------------------------------------------- /.vitepress/theme/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.vitepress/theme/index.mjs -------------------------------------------------------------------------------- /.vitepress/theme/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.vitepress/theme/style.css -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/README.md -------------------------------------------------------------------------------- /documents/common/pandoc_styles/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/common/pandoc_styles/css/style.css -------------------------------------------------------------------------------- /documents/common/pandoc_styles/スタイル.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/common/pandoc_styles/スタイル.docx -------------------------------------------------------------------------------- /documents/forAWSResource/AWSインフラリソース命名規約.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forAWSResource/AWSインフラリソース命名規約.md -------------------------------------------------------------------------------- /documents/forAWSResource/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forAWSResource/index.md -------------------------------------------------------------------------------- /documents/forJava/Javaコーディング規約.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forJava/Javaコーディング規約.md -------------------------------------------------------------------------------- /documents/forJava/Javaコーディング規約_for_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forJava/Javaコーディング規約_for_11.md -------------------------------------------------------------------------------- /documents/forJava/Javaコーディング規約_for_17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forJava/Javaコーディング規約_for_17.md -------------------------------------------------------------------------------- /documents/forJava/Javaコーディング規約_for_8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forJava/Javaコーディング規約_for_8.md -------------------------------------------------------------------------------- /documents/forJava/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forJava/index.md -------------------------------------------------------------------------------- /documents/forOpenAPISpecification/OpenAPI_Specification_2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forOpenAPISpecification/OpenAPI_Specification_2.0.md -------------------------------------------------------------------------------- /documents/forOpenAPISpecification/OpenAPI_Specification_3.0.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forOpenAPISpecification/OpenAPI_Specification_3.0.3.md -------------------------------------------------------------------------------- /documents/forOpenAPISpecification/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forOpenAPISpecification/index.md -------------------------------------------------------------------------------- /documents/forOpenAPISpecification/sample_divided/common/responses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forOpenAPISpecification/sample_divided/common/responses.yaml -------------------------------------------------------------------------------- /documents/forOpenAPISpecification/sample_divided/examples/pets_get/test_case_001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forOpenAPISpecification/sample_divided/examples/pets_get/test_case_001.yaml -------------------------------------------------------------------------------- /documents/forOpenAPISpecification/sample_divided/examples/pets_get/test_case_002.yaml: -------------------------------------------------------------------------------- 1 | value: 2 | pets: [] 3 | -------------------------------------------------------------------------------- /documents/forOpenAPISpecification/sample_divided/examples/pets_pet_id_get/test_case_003.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forOpenAPISpecification/sample_divided/examples/pets_pet_id_get/test_case_003.yaml -------------------------------------------------------------------------------- /documents/forOpenAPISpecification/sample_divided/examples/pets_post/test_case_004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forOpenAPISpecification/sample_divided/examples/pets_post/test_case_004.yaml -------------------------------------------------------------------------------- /documents/forOpenAPISpecification/sample_divided/openapi.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forOpenAPISpecification/sample_divided/openapi.gen.yaml -------------------------------------------------------------------------------- /documents/forOpenAPISpecification/sample_divided/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forOpenAPISpecification/sample_divided/openapi.yaml -------------------------------------------------------------------------------- /documents/forOpenAPISpecification/sample_divided/pets/pets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forOpenAPISpecification/sample_divided/pets/pets.yaml -------------------------------------------------------------------------------- /documents/forOpenAPISpecification/sample_divided/pets/pets_pet_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forOpenAPISpecification/sample_divided/pets/pets_pet_id.yaml -------------------------------------------------------------------------------- /documents/forSQL/SQLコーディング規約(Oracle).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forSQL/SQLコーディング規約(Oracle).md -------------------------------------------------------------------------------- /documents/forSQL/SQLコーディング規約(PostgreSQL).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forSQL/SQLコーディング規約(PostgreSQL).md -------------------------------------------------------------------------------- /documents/forSQL/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/documents/forSQL/index.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/index.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/package.json -------------------------------------------------------------------------------- /public/documents/forGitBranch/git_branch_standards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/public/documents/forGitBranch/git_branch_standards.html -------------------------------------------------------------------------------- /public/documents/forGitBranch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/public/documents/forGitBranch/index.html -------------------------------------------------------------------------------- /public/images/JBee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/public/images/JBee.png -------------------------------------------------------------------------------- /public/images/JBee100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/public/images/JBee100.png -------------------------------------------------------------------------------- /public/images/JBeeBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/public/images/JBeeBlack.png -------------------------------------------------------------------------------- /public/images/background3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/public/images/background3.jpg -------------------------------------------------------------------------------- /public/images/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/public/images/logo-dark.svg -------------------------------------------------------------------------------- /public/images/logo-system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/public/images/logo-system.svg -------------------------------------------------------------------------------- /public/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/public/images/logo.svg -------------------------------------------------------------------------------- /public/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["config:base", ":preserveSemverRanges"] 3 | } 4 | -------------------------------------------------------------------------------- /scripts/pr-comment.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-architect/coding-standards/HEAD/scripts/pr-comment.mjs --------------------------------------------------------------------------------