mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-11 04:48:44 +03:00
9b8d7d46fe
- Add more coffeelint rules to cover code style requirements from CONTRIBUTING.md
32 lines
503 B
JSON
32 lines
503 B
JSON
{
|
|
"max_line_length": {
|
|
"level": "ignore"
|
|
},
|
|
"no_empty_param_list": {
|
|
"level": "error"
|
|
},
|
|
"arrow_spacing": {
|
|
"level": "error"
|
|
},
|
|
"no_interpolation_in_single_quotes": {
|
|
"level": "error"
|
|
},
|
|
"no_debugger": {
|
|
"level": "error"
|
|
},
|
|
"prefer_english_operator": {
|
|
"level": "error"
|
|
},
|
|
"colon_assignment_spacing": {
|
|
"spacing": {
|
|
"left": 0,
|
|
"right": 1
|
|
},
|
|
"level": "error"
|
|
},
|
|
"braces_spacing": {
|
|
"spaces": 0,
|
|
"level": "error"
|
|
}
|
|
}
|