Skip to content

Commit a91457e

Browse files
committed
feat: additional dev content into readme thjs-129
1 parent d18dc06 commit a91457e

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

readme.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,25 @@ You should use .env.example files as a reference.
142142
143143
6. Run frontend: `npm run start:dev -w apps/frontend`
144144
145+
This project has a strong configuration with linters so to make sure that while are you using vs code as an editor you will have the ability to make is visible not only terminal just add this setting locally into repository:
146+
147+
Create a file .vscode/settings.json
148+
149+
```
150+
{
151+
"eslint.experimental.useFlatConfig": true,
152+
"eslint.workingDirectories": [
153+
"./",
154+
{ "pattern": "./packages/**/" },
155+
{ "pattern": "./apps/**/" }
156+
],
157+
"eslint.options": {
158+
"overrideConfigFile": "eslint.config.js"
159+
}
160+
}
161+
162+
```
163+
145164
## Development Flow
146165
147166
### Pull Request Flow

0 commit comments

Comments
 (0)