We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A linter for JS like eslint will help you with the codebase. Example config: https://github.com/elabftw/elabftw/blob/master/.eslintrc.js
eslint
For instance, it can fix automatically when you use var instead of let/const (I've seen a mixed usage in the js files).
var
let/const
A linter for php like phpcs is of great help to format stuff automatically instead of spending time on trivial issues like where the curly braces go. Example config: https://github.com/elabftw/elabftw/blob/master/.php_cs.dist
phpcs
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A linter for JS like
eslint
will help you with the codebase. Example config: https://github.com/elabftw/elabftw/blob/master/.eslintrc.jsFor instance, it can fix automatically when you use
var
instead oflet/const
(I've seen a mixed usage in the js files).A linter for php like
phpcs
is of great help to format stuff automatically instead of spending time on trivial issues like where the curly braces go. Example config: https://github.com/elabftw/elabftw/blob/master/.php_cs.distThe text was updated successfully, but these errors were encountered: