Skip to content

1107 - Linter Config

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

maml
{
  parser: "babel"
  env: "browser"
  indent: 4
  semicolons: false
  quotes: "single"

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

See Also