Skip to content

1007 - Linter Config

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

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

  # Formatting
  max_line_length: 100
  trailing_comma: "all"
  no_unused_vars: true # error
  no_console: false # warn
}

See Also