Skip to content

307 - Linter Config

Code linter rule configuration. This is an example of a MAML document.

maml
{
  parser: "typescript"
  env: "node"
  indent: 4
  semicolons: false
  quotes: "double"

  # Formatting
  max_line_length: 80
  trailing_comma: "none"
  no_unused_vars: true # error
  no_console: true # warn
}

See Also