Skip to content

Commit

Permalink
Add troubleshooting section in documentation (#414)
Browse files Browse the repository at this point in the history
* Add troubleshooting section in documentation

Related to #374

* build
  • Loading branch information
nvuillam authored Aug 25, 2024
1 parent 876aa5e commit f587d42
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,19 @@ Example
console.log(JSON.stringify(linter.lintResult));
```

## Troubleshooting

If you have issues with MegaLinter, you can [report it on the repository](https://github.com/nvuillam/npm-groovy-lint/issues)

To help reproducing, you can access advanced logs using DEBUG env variables

Examples:

- `DEBUG=npm-groovy-lint npm-groovy-lint ....`
- `DEBUG=npm-groovy-lint,npm-groovy-lint-trace npm-groovy-lint ....`

If you want to see what happens in CodeNarc Server, you can clone the repo and run locally `npm server:run` before running npm-groovy-lint: you'll see the live logs of the to CodeNarc Server for npm-groovy-lint.
## Contribute
Contributions are very welcome !
Expand Down
13 changes: 13 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,19 @@ Example
console.log(JSON.stringify(linter.lintResult));
```

## Troubleshooting

If you have issues with MegaLinter, you can [report it on the repository](https://github.com/nvuillam/npm-groovy-lint/issues)

To help reproducing, you can access advanced logs using DEBUG env variables

Examples:

- `DEBUG=npm-groovy-lint npm-groovy-lint ....`
- `DEBUG=npm-groovy-lint,npm-groovy-lint-trace npm-groovy-lint ....`

If you want to see what happens in CodeNarc Server, you can clone the repo and run locally `npm server:run` before running npm-groovy-lint: you'll see the live logs of the to CodeNarc Server for npm-groovy-lint.
## Contribute
Contributions are very welcome !
Expand Down
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ nav:
- "Auto-fixable rules": "./#auto-fixable-rules"
- "CI/CD": "./#cdci"
- "Use as module": "./#use-as-module"
- "Troubleshooting": "./#troubleshooting"
- "Contribute": "./#contribute"
- "Thanks": "./#thanks"
- "Changelog": "CHANGELOG.md"

0 comments on commit f587d42

Please sign in to comment.