Bug 1737746 - Use Permission spec's PermissionState r=mt,peterv
[gecko.git] / .flake8
blob3ab84b7a578da81349d97831d28de87dc9787d62
1 [flake8]
2 max-line-length = 99
3 exclude =
4     # These paths should be triaged and either fixed or moved to the list below.
5     devtools/shared,
6     dom/bindings,
7     gfx/tests,
8     ipc/ipdl/ipdl,
9     layout/base/tests/marionette,
10     layout/reftests/border-image,
11     layout/reftests/fonts,
12     layout/reftests/w3c-css,
13     layout/style,
14     media/libdav1d/generate_source.py,
15     moz.configure,
16     netwerk/dns/prepare_tlds.py,
17     netwerk/protocol/http/make_incoming_tables.py,
18     python/devtools/migrate-l10n/migrate/main.py,
19     python/l10n/fluent_migrations,
20     python/mozbuild/mozbuild/fork_interpose.py,
21     security/manager/ssl/tests/unit,
22     servo/components/style,
23     testing/condprofile/condprof/android.py,
24     testing/condprofile/condprof/creator.py,
25     testing/condprofile/condprof/desktop.py,
26     testing/condprofile/condprof/runner.py,
27     testing/condprofile/condprof/scenarii/heavy.py,
28     testing/condprofile/condprof/scenarii/settled.py,
29     testing/condprofile/condprof/scenarii/synced.py
30     testing/condprofile/condprof/helpers.py,
31     testing/jsshell/benchmark.py,
32     testing/marionette/mach_commands.py,
33     testing/mozharness/docs,
34     testing/mozharness/examples,
35     testing/mozharness/external_tools,
36     testing/mozharness/mach_commands.py,
37     testing/mozharness/manifestparser,
38     testing/mozharness/mozprocess,
39     testing/mozharness/setup.py,
40     testing/parse_build_tests_ccov.py,
41     testing/runtimes/writeruntimes.py,
42     testing/tools/iceserver/iceserver.py,
43     testing/tools/websocketprocessbridge/websocketprocessbridge.py,
44     toolkit/components/featuregates,
45     toolkit/content/tests/chrome/file_about_networking_wsh.py,
46     toolkit/library/build/dependentlibs.py,
47     toolkit/locales/generate_update_locale.py,
48     toolkit/mozapps,
49     toolkit/moz.configure,
50     toolkit/nss.configure,
52     # These paths are intentionally excluded (not necessarily for good reason).
53     build/moz.configure/*.configure,
54     build/pymake/,
55     browser/extensions/mortar/ppapi/,
56     browser/moz.configure,
57     dom/canvas/test/webgl-conf/checkout/closure-library/,
58     editor/libeditor/tests/browserscope/,
59     intl/icu/,
60     ipc/chromium/src/third_party/,
61     js/*.configure,
62     gfx/angle/,
63     gfx/harfbuzz,
64     gfx/skia/,
65     memory/moz.configure,
66     mobile/android/*.configure,
67     node_modules,
68     python/mozbuild/mozbuild/test/configure/data,
69     security/nss/,
70     testing/marionette/harness/marionette_harness/runner/mixins,
71     testing/marionette/harness/marionette_harness/tests,
72     testing/mochitest/pywebsocket3,
73     testing/mozharness/configs/test/test_malformed.py,
74     testing/web-platform/tests,
75     tools/lint/test/files,
76     tools/crashreporter/*.configure,
77     .ycm_extra_conf.py,
79     # This file uses py3.7 only syntax, so can't currently be checked by flake8 in-tree
80     tools/crashreporter/system-symbols/win/symsrv-fetch.py
82 # See:
83 #   - http://flake8.pycqa.org/en/latest/user/error-codes.html
84 #   - http://pep8.readthedocs.io/en/latest/intro.html#configuration
85 ignore =
86     # These should be triaged and either fixed or moved to the list below.
87     W504, W605, W606,
88     # These are intentionally disabled (not necessarily for good reason).
89     #   F723: syntax error in type comment
90     #       text contains quotes which breaks our custom JSON formatter
91     F723, E121, E123, E126, E129, E133, E226, E241, E242, E402, E704, E741, W503,
93     # black will generate code that breaks these. they're not PEP8 compliant though;
94     # see https://github.com/psf/black/blob/master/docs/compatible_configs.md#flake8
95     W503, E203
97 per-file-ignores =
98     # These paths are intentionally excluded.
99     ipc/ipdl/*: F403, F405
100     layout/tools/reftest/selftest/conftest.py: F811
101     # cpp_eclipse has a lot of multi-line embedded XML which exceeds line length
102     python/mozbuild/mozbuild/backend/cpp_eclipse.py: E501
103     testing/firefox-ui/**/__init__.py: F401
104     testing/marionette/**/__init__.py: F401
105     testing/mochitest/tests/python/conftest.py: F811
106     testing/mozbase/manifestparser/tests/test_filters.py: E731
107     testing/mozbase/mozlog/tests/test_formatters.py: E501
108     testing/mozharness/configs/*: E124, E127, E128, E131, E231, E261, E265, E266, E501, W391
110     # These paths contain Python-2 only syntax which cause errors since flake8
111     # is run with Python 3.
112     browser/app/macversion.py: F633
113     build/**: F633, F821
114     config/**: F633, F821
115     ipc/pull-chromium.py: F633
116     js/**: F633, F821
117     memory/**: F821
118     mozglue/**: F821
119     python/mozbuild/**: F821
120     python/mozbuild/mozbuild/test/configure/test_checks_configure.py: E128
121     python/mozversioncontrol/**: F821
122     testing/mozharness/**: F821
123     testing/talos/**: F821
124     toolkit/components/telemetry/**: F821
125     testing/firefox-ui/tests/functional/safebrowsing/test_initial_download.py: F821
126     testing/mochitest/**: F821
127     xpcom/idl-parser/xpidl/**: F633, F821
129 builtins =
130     # For GDB extensions
131     gdb