Skip to content

Commit

Permalink
[flow][cleanup][EZ] Kill experimenta.precise_dependents
Browse files Browse the repository at this point in the history
Summary: Changelog: [internal]

Reviewed By: panagosg7

Differential Revision: D57119663

fbshipit-source-id: f5cce23a765322666ff64a1496172b6c467cce74
  • Loading branch information
SamChou19815 authored and facebook-github-bot committed May 8, 2024
1 parent b75ba64 commit 4ba01e3
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/commands/config/flowConfig.ml
Original file line number Diff line number Diff line change
Expand Up @@ -781,14 +781,6 @@ module Opts = struct
let node_resolver_root_relative_dirnames = v :: opts.node_resolver_root_relative_dirnames in
Ok { opts with node_resolver_root_relative_dirnames })

let precise_dependents_parser =
boolean (fun opts v ->
if not v then
Error "precise dependents must be enabled."
else
Ok opts
)

let react_runtime_parser =
enum
[("classic", Options.ReactRuntimeClassic); ("automatic", Options.ReactRuntimeAutomatic)]
Expand Down Expand Up @@ -939,7 +931,6 @@ module Opts = struct
);
("experimental.namespaces", boolean (fun opts v -> Ok { opts with namespaces = v }));
("experimental.ts_syntax", boolean (fun opts v -> Ok { opts with ts_syntax = v }));
("experimenta.precise_dependents", precise_dependents_parser);
("facebook.fbs", string (fun opts v -> Ok { opts with facebook_fbs = Some v }));
("facebook.fbt", string (fun opts v -> Ok { opts with facebook_fbt = Some v }));
("file_watcher", file_watcher_parser);
Expand Down

0 comments on commit 4ba01e3

Please sign in to comment.