tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

.flake8 (246B)


      1 [flake8]
      2 max-line-length = 88
      3 ignore =
      4 	# W503 violates spec https://github.com/PyCQA/pycodestyle/issues/513
      5 	W503
      6 	# W504 has issues https://github.com/OCA/maintainer-quality-tools/issues/545
      7 	W504
      8 	# Black creates whitespace before colon
      9 	E203