Add initial project configuration and tooling setup#1
Merged
factman merged 3 commits intoArcStackLab:mainfrom Aug 11, 2024
Merged
Add initial project configuration and tooling setup#1factman merged 3 commits intoArcStackLab:mainfrom
factman merged 3 commits intoArcStackLab:mainfrom
Conversation
Project development environment setup
Added NX configuration, Eslint, Prettier and Removed some config for later
factman
commented
Aug 11, 2024
Fixed issues with PR ArcStackLab#1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The project lacks a standardized development environment and tooling setup, which can lead to inconsistencies in code style and development workflows.
Solution
.devcontainer/devcontainer.jsonto set up a consistent development container..editorconfigto enforce coding style rules..eslintignoreto specify files and directories for ESLint to ignore..gitattributesto normalize line endings..gitignoreto exclude unnecessary files and directories..npmrcfor workspace package linking preferences..prettierignoreto specify files and directories for Prettier to ignore.CODE_OF_CONDUCT.mdfor better readability.README.mdfor formatting consistency.nx.jsonfor Nx workspace settings.package.jsonwith project metadata and scripts..gitkeepfile in thepackagesdirectory.pnpm-lock.yamlwith dependency versions and integrity checks.pnpm-workspace.yamlto define workspace structure.Other changes
.gitignoreto include more file types and directories.Deploy Notes
There are no new dependencies, scripts, or environment variables introduced with this PR.
New dev dependencies:
eslint: Linting utilityhusky: Git hooks managerlint-staged: Runs linters on git staged filesprettier: Code formattertypescript: TypeScript language supportnx: Nx workspace support@nx/eslint: Nx ESLint plugin