Example 8315
Linter Config
Code linter rule configuration.
{
parser: "typescript"
env: "es2024"
indent: 2
semicolons: true
quotes: "double"
# Formatting
max_line_length: 80
trailing_comma: "none"
no_unused_vars: true # error
no_console: false # warn
}