mirror of
https://github.com/Ionaru/easy-markdown-editor
synced 2025-09-14 11:42:35 -06:00
38 lines
745 B
JSON
38 lines
745 B
JSON
|
{
|
||
|
"defaultSeverity": "error",
|
||
|
"extends": [
|
||
|
"tslint:latest"
|
||
|
],
|
||
|
"rules": {
|
||
|
"max-line-length": [
|
||
|
true,
|
||
|
140
|
||
|
],
|
||
|
"no-unused-expression": [
|
||
|
true,
|
||
|
"allow-new"
|
||
|
],
|
||
|
"quotemark": [
|
||
|
true,
|
||
|
"single"
|
||
|
],
|
||
|
"trailing-comma": [
|
||
|
true,
|
||
|
{
|
||
|
"multiline": "always",
|
||
|
"singleline": "never"
|
||
|
}
|
||
|
],
|
||
|
"variable-name": [
|
||
|
true,
|
||
|
"ban-keywords",
|
||
|
"check-format",
|
||
|
"allow-leading-underscore"
|
||
|
],
|
||
|
"no-submodule-imports": [
|
||
|
true,
|
||
|
"codemirror/addon"
|
||
|
]
|
||
|
}
|
||
|
}
|