Skip to content

403 - Linter Config

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

maml
{
  parser: "typescript"
  env: "browser"
  indent: 2
  semicolons: true
  quotes: "double"

  # Formatting
  max_line_length: 120
  trailing_comma: "es5"
  no_unused_vars: true # error
  no_console: true # warn
}

See Also