diff --git a/scripts/generate-phab-tag-removal-script.js b/scripts/generate-phab-tag-removal-script.js --- a/scripts/generate-phab-tag-removal-script.js +++ b/scripts/generate-phab-tag-removal-script.js @@ -1,4 +1,4 @@ -// @flow +/* eslint-disable flowtype/require-valid-file-annotation */ const { execSync } = require('child_process'); const fs = require('fs'); diff --git a/scripts/get_cargo_path.js b/scripts/get_cargo_path.js --- a/scripts/get_cargo_path.js +++ b/scripts/get_cargo_path.js @@ -1,4 +1,4 @@ -// @flow +/* eslint-disable flowtype/require-valid-file-annotation */ const findUp = require('find-up'); diff --git a/scripts/get_clang_paths.js b/scripts/get_clang_paths.js --- a/scripts/get_clang_paths.js +++ b/scripts/get_clang_paths.js @@ -1,4 +1,4 @@ -// @flow +/* eslint-disable flowtype/require-valid-file-annotation */ const clangPaths = [ { diff --git a/scripts/get_clang_paths_cli.js b/scripts/get_clang_paths_cli.js --- a/scripts/get_clang_paths_cli.js +++ b/scripts/get_clang_paths_cli.js @@ -1,4 +1,4 @@ -// @flow +/* eslint-disable flowtype/require-valid-file-annotation */ const { clangPaths } = require('./get_clang_paths.js');