Add dist/ to .prettierignore (#195)

### TL;DR

This small change adds 'dist/' directory to `.prettierignore` in the frontend package.

### What changed?

An entry for 'dist/' was added to `.prettierignore` file in the frontend package. Since we don't want to format the distribution files, we have added it to our list of ignored paths for prettier. The change just includes the addition of single line `dist/` to `.prettierignore` file.

### How to test? 

There is no specific testing needed other than PR build success, as it is a development focused change.

### Why make this change? 

The reason for this change is to prevent Prettier from installing unnecessary dependencies in the dist directory which is generated and can cause linter warnings and errors.
This commit is contained in:
Vivian Phung 2024-05-22 14:50:37 -04:00 committed by GitHub
parent f84e2c0d9d
commit e148fd8d6b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1 @@
dist/