Skip to content
Draft
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions qlty-check/src/parser/terraform.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use super::Parser;
use anyhow::Result;
use std::collections::HashMap;

Check failure on line 3 in qlty-check/src/parser/terraform.rs

View workflow job for this annotation

GitHub Actions / ubuntu-latest

unused import: `std::collections::HashMap`

Check failure on line 3 in qlty-check/src/parser/terraform.rs

View workflow job for this annotation

GitHub Actions / windows-latest

unused import: `std::collections::HashMap`

Check failure on line 3 in qlty-check/src/parser/terraform.rs

View workflow job for this annotation

GitHub Actions / macos-15

unused import: `std::collections::HashMap`

Check failure on line 3 in qlty-check/src/parser/terraform.rs

View workflow job for this annotation

GitHub Actions / ubuntu-latest

unused import: `std::collections::HashMap`
use qlty_types::analysis::v1::{Category, Issue, Level, Location, Range};
use serde::{Deserialize, Serialize};
#[derive(Debug, Deserialize)]
Expand Down
2 changes: 1 addition & 1 deletion qlty-plugins/plugins/linters/terraform/plugin.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ description = "Validator and formatter for terraform"
script = "terraform validate -json"
success_codes = [0, 1]
output = "stdout"
target = { type = "parent" }
target = { type = "parent_with", path = ".terraform.lock.hcl" }
runs_from = { type = "target_directory" }
output_format = "terraform"
cache_results = true
Expand Down
Loading