2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-09-14 11:42:35 -06:00
easy-markdown-editor/tslint.json

36 lines
713 B
JSON
Raw Permalink Normal View History

2018-07-06 16:03:52 +02:00
{
"defaultSeverity": "error",
"extends": [
"tslint:latest"
],
"rules": {
"max-line-length": [
true,
140
],
2019-02-21 18:03:50 +01:00
"no-console": false,
"no-null-keyword": true,
2018-07-06 16:03:52 +02:00
"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"
]
}
}