summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build18
1 files changed, 0 insertions, 18 deletions
diff --git a/meson.build b/meson.build
index 267145ea..8d723374 100644
--- a/meson.build
+++ b/meson.build
@@ -313,8 +313,6 @@ install_data(
message('--- lint dependencies ---')
clangtidy = find_program('clang-tidy', required: false)
luacheck = find_program('luacheck', required: false)
-flake8 = find_program('flake8', required: false)
-pylint_run = find_program('scripts/meson/run-pylint.sh')
message('-------------------------')
if clangtidy.found()
@@ -341,22 +339,6 @@ if luacheck.found()
)
endif
-if flake8.found()
- run_target(
- 'flake8',
- command: [
- flake8,
- '--max-line-length=100',
- meson.source_root() / 'tests' / 'pytests',
- ],
- )
-endif
-
-run_target(
- 'pylint',
- command: pylint_run,
-)
-
# Summary message
# NOTE: ternary operator in format() not supported