You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
easy-markdown-editor/tslint.json

36 lines
713 B
JSON

{
"defaultSeverity": "error",
"extends": [
"tslint:latest"
],
"rules": {
"max-line-length": [
true,
140
],
"no-console": false,
"no-null-keyword": true,
"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"
]
}
}