source: trunk/.gitignore

Last change on this file was 7b33931, checked in by Itamar Turner-Trauring <itamar@…>, at 2023-04-17T14:21:20Z

Replace flake8 with ruff.

  • Property mode set to 100644
File size: 845 bytes
Line 
1venv*
2
3# vim swap files
4*.swp
5*.swo
6
7*.pyc
8*.pyo
9*~
10*.DS_Store
11.*.kate-swp
12*.bak
13
14/build/
15/support/
16
17# these are generated at build time, and never checked in
18/src/allmydata/_version.py
19
20# these are generated too
21/bin/tahoe
22/bin/tahoe.pyscript
23/bin/tahoe-script.py
24
25/.built
26/src/tahoe_lafs.egg-info/
27Twisted-*.egg
28zope.interface-*.egg
29.pc
30
31/src/allmydata/test/plugins/dropin.cache
32**/_trial_temp*
33/tmp*
34/*.patch
35/dist/
36/tahoe-deps/
37/tahoe-deps.tar.gz
38/.coverage
39/.coverage.*
40/.coverage.el
41/coverage-html/
42/miscaptures.txt
43/violations.txt
44/.tox/
45/docs/_build/
46/coverage.xml
47/.pre-commit-config.local.yaml
48/.hypothesis/
49/eliot.log
50/misc/python3/results.xml
51/misc/python3/results.subunit2
52
53# This is the plaintext of the private environment needed for some CircleCI
54# operations.  It's never supposed to be checked in.
55secret-env-plain
56
57.ruff_cache
Note: See TracBrowser for help on using the repository browser.