Example 3815
Linter Config
Code linter rule configuration.
{
parser: "typescript"
env: "browser"
indent: 2
semicolons: true
quotes: "single"
# Formatting
max_line_length: 100
trailing_comma: "es5"
no_unused_vars: true # error
no_console: false # warn
}