Calum Young
Calum Young
One workaround would be to create a configuration file for use with lighthouse. For example, a file called config.js could be created with (update for your requirements): ``` const config...
You can create a file containing a list of URLs separated on new lines and then run a command like `lighthouse-batch -f ./test_sites.txt` to run a series of urls. To...
Django-reload-server updates the [runserver management command](https://github.com/tjwalch/django-livereload-server/blob/95f9cf0f6bf4443a018afdfbdfcaff14cbda3f95/livereload/management/commands/runserver.py). To get the runsslserver command to work you will need to update the runsslserver management command to include the relevant parts from the Django-reload-server...
FYI, it appears that the [iCalendar format](https://github.com/joaocarmo/vcard-creator#icalendar-format) is no longer necessary when adding a contact on an iPhone as the `.vcf` file extension is now supported.
This can be fixed using [flake8-tidy-imports](https://github.com/adamchainz/flake8-tidy-imports) using the `banned-modules` configuration.
> Just a friendly request that these get eventually added to the Rules in docs: https://beta.ruff.rs/docs/rules/#error-e I believe this will be added when #3689 lands, as documenting a rule before...
The R505 rule was ported from pylint as suggested in #14. As plyint also throws an error in this case, I do not believe this is a false positive. ```...
> the arg is called unused-arguments-ignore-dunder but it is stored in unused-arguments-ignore-dunder-methods. This means that if you want to use this in a config you need to do unused-arguments-ignore-dunder-methods =...