Skip to content

Commit e94f3bf

Browse files
authored
Merge pull request #68 from atlassian-labs/enable-perm-interp
feat: enable permission checker by default
2 parents f085d62 + 90f5d18 commit e94f3bf

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

crates/fsrt/src/main.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,6 @@ pub struct Args {
7676
#[arg(short, long)]
7777
out: Option<PathBuf>,
7878

79-
// Run the permission checker
80-
#[arg(long)]
81-
check_permissions: bool,
82-
8379
#[arg(long)]
8480
graphql_schema_path: Option<PathBuf>,
8581

@@ -379,7 +375,7 @@ pub(crate) fn scan_directory<'a>(
379375
.into_iter()
380376
.any(|remote| remote.contains_auth());
381377

382-
let run_permission_checker = opts.check_permissions && !transpiled_async;
378+
let run_permission_checker = !transpiled_async;
383379

384380
let permissions_declared: HashSet<String> =
385381
HashSet::from_iter(permission_scopes.iter().map(|s| s.replace('\"', "")));

crates/fsrt/src/test.rs

-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,6 @@ pub(crate) fn scan_directory_test(
175175

176176
// disallow parsing arguments meant for test harness (e.g., --nocapture, --exact) from std::env::args()
177177
let mut args = Args::parse_from(&[""]);
178-
args.check_permissions = true;
179178

180179
match scan_directory(PathBuf::new(), &mut args, forge_test_proj, &secret_packages) {
181180
Ok(report) => report,

0 commit comments

Comments
 (0)