Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 555 Bytes

code_quality.md

File metadata and controls

24 lines (16 loc) · 555 Bytes

Code Quality

Linting is used to ensure the project maintains high-quality coding standards.

Frontend

The frontend uses ESLint and follows Airbnb's rules.

# Check the linting
$ npm run lint

# Fix most of the linting issues
$ npm run lint:fix

Backend

The backend uses Pylint. The rules can be found in the .pylintrc file.

# Run the Pylint validators
$ poetry run invoke pylint