Bug 1529847 - Move the Changes Front initialization to the Promise.all. r=rcaliman
[gecko.git] / .flake8
bloba8b95735fa00dcb6936d2e2c7ead20283050c7bf
1 [flake8]
2 max-line-length = 99
3 exclude =
4     build/build-infer/build-infer.py,
5     build/moz.configure/*.configure,
6     build/pymake/,
7     browser/extensions/mortar/ppapi/,
8     browser/moz.configure,
9     dom/canvas/test/webgl-conf/checkout/closure-library/,
10     editor/libeditor/tests/browserscope/,
11     intl/icu/,
12     ipc/chromium/src/third_party/,
13     js/*.configure,
14     gfx/angle/,
15     gfx/harfbuzz,
16     glx/skia/,
17     memory/moz.configure,
18     mobile/android/*.configure,
19     node_modules,
20     security/nss/,
21     testing/firefox-ui/**/__init__.py,
22     testing/marionette/**/__init__.py,
23     testing/marionette/harness/marionette_harness/runner/mixins,
24     testing/marionette/harness/marionette_harness/tests,
25     testing/mochitest/pywebsocket,
26     testing/mozharness/configs/test/test_malformed.py,
27     tools/lint/test/files,
28     tools/infer/test/*.configure,
29     tools/crashreporter/*.configure,
31 # See:
32 #   - http://flake8.pycqa.org/en/latest/user/error-codes.html
33 #   - http://pep8.readthedocs.io/en/latest/intro.html#configuration
34 ignore =
35     # These should be triaged and either fixed or moved to the list below.
36     F632, F633, F811, E117, W504, W605, W606,
37     # These are intentionally disabled (not necessarily for good reason).
38     #   F723: syntax error in type comment
39     #       text contains quotes which breaks our custom JSON formatter
40     F723, E121, E123, E126, E129, E133, E226, E241, E242, E402, E704, E741, W503,
42 per-file-ignores =
43     ipc/ipdl/*: F403, F405
44     testing/mozharness/configs/*: E124, E127, E128, E131, E231, E261, E265, E266, E501, W391