mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-07-19 01:06:39 +00:00
37 lines
912 B
JSON
37 lines
912 B
JSON
{
|
|
"rules": {
|
|
"class-name": true,
|
|
"comment-format": [true, "check-space"],
|
|
"curly": false,
|
|
"forin": false,
|
|
"indent": [true, "spaces"],
|
|
"max-line-length": [true, 180],
|
|
"no-trailing-whitespace": false,
|
|
"no-unused-expression": false,
|
|
"no-var-keyword": true,
|
|
"one-line": [true,
|
|
"check-open-brace",
|
|
"check-catch",
|
|
"check-else",
|
|
"check-whitespace"
|
|
],
|
|
"radix": true,
|
|
"trailing-comma": [false],
|
|
"triple-equals": [true, "allow-null-check"],
|
|
"typedef-whitespace": [true, {
|
|
"call-signature": "nospace",
|
|
"index-signature": "nospace",
|
|
"parameter": "nospace",
|
|
"property-declaration": "nospace",
|
|
"variable-declaration": "nospace"
|
|
}],
|
|
"variable-name": false,
|
|
"whitespace": [true,
|
|
"check-branch",
|
|
"check-decl",
|
|
"check-operator",
|
|
"check-separator",
|
|
"check-type"
|
|
]
|
|
}
|
|
} |