├── .editorconfig ├── .github ├── renovate.json └── workflows │ ├── static.yml │ └── test.yml ├── .gitignore ├── .prettierrc.mjs ├── .textlintrc.js ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── cspell.json ├── eslint.config.js ├── lint-staged.config.mjs ├── package.json ├── src ├── .vitepress │ ├── config.js │ └── theme │ │ ├── custom.css │ │ └── index.js ├── browsers.md ├── contributing.md ├── css │ ├── builder.md │ ├── ids.md │ ├── index.md │ ├── order.md │ ├── properties.md │ ├── rules.md │ ├── selectors.md │ ├── structure.md │ ├── style.md │ ├── values.md │ └── variables.md ├── environment.md ├── git │ ├── branches.md │ ├── hooks.md │ ├── index.md │ └── workflow.md ├── html │ ├── accessibility.md │ ├── builder.md │ ├── components.md │ ├── doctype.md │ ├── elements.md │ ├── ids.md │ ├── index.md │ ├── interactions.md │ ├── links.md │ ├── meta.md │ ├── structure.md │ └── style.md ├── img │ └── breakpoint.png ├── index.md ├── js │ ├── builder.md │ ├── development.md │ ├── index.md │ ├── interactions.md │ ├── libraries.md │ ├── loading.md │ ├── no-style-attr.md │ ├── performance.md │ ├── structure.md │ └── style.md ├── media │ ├── audio.md │ ├── font.md │ ├── image.md │ ├── index.md │ └── video.md ├── naming │ ├── abbreviation.md │ ├── consistency.md │ ├── index.md │ ├── principles.md │ ├── spelling.md │ └── structure.md ├── preparation.md ├── public │ └── favicon.png ├── roles.md ├── rules.md ├── testing.md ├── text-files.md ├── tools │ └── setup-volta.md └── versioning.md └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@d-zero/prettier-config'; 2 | -------------------------------------------------------------------------------- /.textlintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/.textlintrc.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/README.md -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/cspell.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/eslint.config.js -------------------------------------------------------------------------------- /lint-staged.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/lint-staged.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/package.json -------------------------------------------------------------------------------- /src/.vitepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/.vitepress/config.js -------------------------------------------------------------------------------- /src/.vitepress/theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/.vitepress/theme/custom.css -------------------------------------------------------------------------------- /src/.vitepress/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/.vitepress/theme/index.js -------------------------------------------------------------------------------- /src/browsers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/browsers.md -------------------------------------------------------------------------------- /src/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/contributing.md -------------------------------------------------------------------------------- /src/css/builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/css/builder.md -------------------------------------------------------------------------------- /src/css/ids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/css/ids.md -------------------------------------------------------------------------------- /src/css/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/css/index.md -------------------------------------------------------------------------------- /src/css/order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/css/order.md -------------------------------------------------------------------------------- /src/css/properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/css/properties.md -------------------------------------------------------------------------------- /src/css/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/css/rules.md -------------------------------------------------------------------------------- /src/css/selectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/css/selectors.md -------------------------------------------------------------------------------- /src/css/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/css/structure.md -------------------------------------------------------------------------------- /src/css/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/css/style.md -------------------------------------------------------------------------------- /src/css/values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/css/values.md -------------------------------------------------------------------------------- /src/css/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/css/variables.md -------------------------------------------------------------------------------- /src/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/environment.md -------------------------------------------------------------------------------- /src/git/branches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/git/branches.md -------------------------------------------------------------------------------- /src/git/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/git/hooks.md -------------------------------------------------------------------------------- /src/git/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/git/index.md -------------------------------------------------------------------------------- /src/git/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/git/workflow.md -------------------------------------------------------------------------------- /src/html/accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/html/accessibility.md -------------------------------------------------------------------------------- /src/html/builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/html/builder.md -------------------------------------------------------------------------------- /src/html/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/html/components.md -------------------------------------------------------------------------------- /src/html/doctype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/html/doctype.md -------------------------------------------------------------------------------- /src/html/elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/html/elements.md -------------------------------------------------------------------------------- /src/html/ids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/html/ids.md -------------------------------------------------------------------------------- /src/html/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/html/index.md -------------------------------------------------------------------------------- /src/html/interactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/html/interactions.md -------------------------------------------------------------------------------- /src/html/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/html/links.md -------------------------------------------------------------------------------- /src/html/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/html/meta.md -------------------------------------------------------------------------------- /src/html/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/html/structure.md -------------------------------------------------------------------------------- /src/html/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/html/style.md -------------------------------------------------------------------------------- /src/img/breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/img/breakpoint.png -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/index.md -------------------------------------------------------------------------------- /src/js/builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/js/builder.md -------------------------------------------------------------------------------- /src/js/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/js/development.md -------------------------------------------------------------------------------- /src/js/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/js/index.md -------------------------------------------------------------------------------- /src/js/interactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/js/interactions.md -------------------------------------------------------------------------------- /src/js/libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/js/libraries.md -------------------------------------------------------------------------------- /src/js/loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/js/loading.md -------------------------------------------------------------------------------- /src/js/no-style-attr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/js/no-style-attr.md -------------------------------------------------------------------------------- /src/js/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/js/performance.md -------------------------------------------------------------------------------- /src/js/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/js/structure.md -------------------------------------------------------------------------------- /src/js/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/js/style.md -------------------------------------------------------------------------------- /src/media/audio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/media/audio.md -------------------------------------------------------------------------------- /src/media/font.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/media/font.md -------------------------------------------------------------------------------- /src/media/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/media/image.md -------------------------------------------------------------------------------- /src/media/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/media/index.md -------------------------------------------------------------------------------- /src/media/video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/media/video.md -------------------------------------------------------------------------------- /src/naming/abbreviation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/naming/abbreviation.md -------------------------------------------------------------------------------- /src/naming/consistency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/naming/consistency.md -------------------------------------------------------------------------------- /src/naming/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/naming/index.md -------------------------------------------------------------------------------- /src/naming/principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/naming/principles.md -------------------------------------------------------------------------------- /src/naming/spelling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/naming/spelling.md -------------------------------------------------------------------------------- /src/naming/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/naming/structure.md -------------------------------------------------------------------------------- /src/preparation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/preparation.md -------------------------------------------------------------------------------- /src/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/public/favicon.png -------------------------------------------------------------------------------- /src/roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/roles.md -------------------------------------------------------------------------------- /src/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/rules.md -------------------------------------------------------------------------------- /src/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/testing.md -------------------------------------------------------------------------------- /src/text-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/text-files.md -------------------------------------------------------------------------------- /src/tools/setup-volta.md: -------------------------------------------------------------------------------- 1 | # Voltaのセットアップ手順 2 | 3 | WIP 4 | -------------------------------------------------------------------------------- /src/versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/src/versioning.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-zero-dev/frontend-guidelines/HEAD/yarn.lock --------------------------------------------------------------------------------