const
const LINT_DEPRECATED_FN: string
module
stdlib::lint
defined in C:\Users\bye45\.glide\bin/src/stdlib/lint.glide
Build the canonical `lint:<category>` code from a category name.
const
const LINT_UNSTABLE_FN: string
const
const LINT_UNFREED_ALLOC: string
const
const LINT_ARENA_NOT_FREED: string
const
const LINT_UNUSED_VAR: string
const
const LINT_UNUSED_PARAM: string
const
const LINT_UNUSED_FN: string
const
const LINT_UNNECESSARY_MUT: string
fn
fn lint_code(category: string) -> string
Build the canonical lint:<category> code from a category name. Useful when an editor or build tool wants to filter / format custom-lint diagnostics programmatically.
let code: string = lint_code("blocking_io");
result: "lint:blocking_io"