chore: new ignore example and set word wrap (#6080)

- Add a new example about ignoring more than one file.
- Disable word wrap in the editor configured by the devcontainer.
This commit is contained in:
Marco Ferrari 2024-08-26 18:19:43 +02:00 committed by GitHub
parent 11d4aac68c
commit 6b2ef057ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -5,6 +5,7 @@
"vscode": {
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.wordWrap": "off",
"prettier.resolveGlobalModules": true
},
"extensions": [

View file

@ -595,6 +595,7 @@ For example:
- Lint only the `src` folder: `FILTER_REGEX_INCLUDE: .*src/.*`
- Do not lint files inside test folder: `FILTER_REGEX_EXCLUDE: .*test/.*`
- Do not lint JavaScript files inside test folder: `FILTER_REGEX_EXCLUDE: .*test/.*.js`
- Do not lint files named `gradlew` and JavaScript files inside a specific directory: `.*/gradlew|.*/specific/directory/*.js`
<!-- This `README.md` has both markers in the text, so it is considered not generated. -->