mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-21 16:21:00 -05:00
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:
parent
11d4aac68c
commit
6b2ef057ca
2 changed files with 2 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
|||
"vscode": {
|
||||
"settings": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||
"editor.wordWrap": "off",
|
||||
"prettier.resolveGlobalModules": true
|
||||
},
|
||||
"extensions": [
|
||||
|
|
|
@ -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. -->
|
||||
|
||||
|
|
Loading…
Reference in a new issue