We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1767ae8 commit 2391a73Copy full SHA for 2391a73
crates/fsrt/src/main.rs
@@ -75,10 +75,6 @@ pub struct Args {
75
#[arg(short, long)]
76
out: Option<PathBuf>,
77
78
- // Run the permission checker
79
- #[arg(long)]
80
- check_permissions: bool,
81
-
82
#[arg(long)]
83
graphql_schema_path: Option<PathBuf>,
84
@@ -378,7 +374,7 @@ pub(crate) fn scan_directory<'a>(
378
374
.into_iter()
379
375
.any(|remote| remote.contains_auth());
380
376
381
- let run_permission_checker = opts.check_permissions && !transpiled_async;
377
+ let run_permission_checker = !transpiled_async;
382
383
let permissions_declared: HashSet<String> =
384
HashSet::from_iter(permission_scopes.iter().map(|s| s.replace('\"', "")));
0 commit comments