gleam.toml

name = "qrkit"
version = "0.1.0"
description = "Pure Gleam QR code generator with terminal, SVG, and PNG rendering."
licences = ["MIT"]
repository = { type = "github", user = "nao1215", repo = "qrkit" }
links = [
  { title = "Repository", href = "https://github.com/nao1215/qrkit" },
  { title = "Changelog", href = "https://github.com/nao1215/qrkit/blob/main/CHANGELOG.md" },
]
gleam = ">= 1.15.0"

[dependencies]
gleam_stdlib = ">= 0.66.0 and < 2.0.0"

[dev-dependencies]
gleeunit = ">= 1.0.0 and < 2.0.0"
glinter = ">= 2.14.0 and < 3.0.0"
simplifile = ">= 2.4.0 and < 3.0.0"

[tools.glinter]
warnings_as_errors = true
include = ["src/", "test/"]

[tools.glinter.rules]
assert_ok_pattern = "error"
avoid_panic = "error"
avoid_todo = "error"
deep_nesting = "off"
discarded_result = "error"
division_by_zero = "error"
duplicate_import = "error"
echo = "error"
error_context_lost = "error"
ffi_usage = "error"
function_complexity = "error"
label_possible = "off"
missing_labels = "off"
missing_type_annotation = "error"
module_complexity = "error"
panic_without_message = "error"
prefer_guard_clause = "off"
redundant_case = "error"
short_variable_name = "off"
string_inspect = "error"
stringly_typed_error = "error"
thrown_away_error = "off"
todo_without_message = "error"
trailing_underscore = "error"
unnecessary_string_concatenation = "error"
unnecessary_variable = "error"
unqualified_import = "error"
unused_exports = "off"
unwrap_used = "error"

[tools.glinter.ignore]
"test/**/*.gleam" = [
  "assert_ok_pattern",
  "label_possible",
  "missing_type_annotation",
  "short_variable_name",
  "unused_exports",
]