* new contributor guide folder architecture * update content pass 1 * Prepare UI component folder to receive componentns * Add component doc example for button * Fix broken links * Fix broken links * Fix images
22 lines
544 B
Plaintext
22 lines
544 B
Plaintext
---
|
|
title: Troubleshooting
|
|
sidebar_position: 5
|
|
sidebar_custom_props:
|
|
icon: TbExclamationCircle
|
|
---
|
|
|
|
|
|
## Windows setup eslint prettier error: `CR` line breaks found
|
|
|
|
This is due to the linebreak characters of windows and the git configuration. Try running:
|
|
```
|
|
git config --global core.autocrlf false
|
|
```
|
|
|
|
Then delete the repository and clone it again.
|
|
|
|
|
|
## Yarn lock file changed and new files are created (`yarn.lock`, `.yarnrc.yml`, `.yarn`)
|
|
|
|
Maybe you are using yarn 3? Try installing [yarn classic](https://classic.yarnpkg.com/lang/en/)!
|