Files
swift-mirror/.flake8
Robert Widmann 2d07f382c5 Delete _InternalSwiftSyntaxParser And Its Build Infrastructure
This is the start of the removal of the C++ implementation of libSyntax
in favor of the new Swift Parser and Swift Syntax libraries. Now that
the Swift Parser has switched the SwiftSyntaxParser library over to
being a thin wrapper around the Swift Parser, there is no longer any
reason we need to retain any libSyntax infrastructure in the swift
compiler.

As a first step, delete the infrastructure that builds
lib_InternalSwiftSyntaxParser and convert any scripts that mention
it to instead mention the static mirror libraries. The --swiftsyntax
build-script flag has been retained and will now just execute the
SwiftSyntax and Swift Parser builds with the just-built tools.
2022-11-02 10:35:29 -07:00

69 lines
1.9 KiB
INI

[flake8]
filename =
*.py,
./benchmark/scripts/Benchmark_Driver,
./benchmark/scripts/Benchmark_DTrace.in,
./benchmark/scripts/Benchmark_GuardMalloc.in,
./benchmark/scripts/Benchmark_QuickCheck.in,
./benchmark/scripts/Benchmark_RuntimeLeaksRunner.in,
./benchmark/scripts/run_smoke_bench,
./docs/scripts/ns-html2rst,
./test/Driver/Inputs/fake-toolchain/ld,
./utils/80+-check,
./utils/backtrace-check,
./utils/build-script,
./utils/check-incremental,
./utils/coverage/coverage-build-db,
./utils/coverage/coverage-generate-data,
./utils/coverage/coverage-query-db,
./utils/coverage/coverage-touch-tests,
./utils/dev-scripts/blockifyasm,
./utils/dev-scripts/split-cmdline,
./utils/gyb,
./utils/line-directive,
./utils/PathSanitizingFileCheck,
./utils/recursive-lipo,
./utils/round-trip-syntax-test,
./utils/rth,
./utils/run-test,
./utils/scale-test,
./utils/submit-benchmark-results,
./utils/swift_build_support/tests/mock-distcc,
./utils/symbolicate-linux-fatal,
./utils/update-checkout,
./utils/viewcfg,
# TODO: We should be linting the lit configs.
#lit.cfg,
exclude =
.git,
__pycache__,
ignore =
# The black tool treats slices consistently, the E203 warning is not PEP8
# compliant (https://github.com/psf/black#slices).
E203,
# Line breaks before binary operators are not explicitly disallowed in
# PEP8, rather it should be consistent throughout the project. The black
# tool puts them on new lines which is to be considered a best practice
# in the future.
W503,
# Similarly ignore line break after binary operators.
W504,
# TODO: Ignore Bugbear lints for now, but we should enable these in the
# future.
B,
# 10% larger than the standard 80 character limit. Conforms to the black
# standard and Bugbear's B950.
max-line-length = 88