1
0
Fork 0
mirror of synced 2024-06-22 17:01:09 -04:00
ultimate-vim/sources_non_forked/markdown-preview.nvim/tslint.json

23 lines
393 B
JSON
Raw Normal View History

2022-05-19 08:12:11 -04:00
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"rulesDirectory": ["tslint-plugin-prettier"],
"rules": {
"prettier": [
true,
{
"semi": false,
"singleQuote": true
}
],
"no-submodule-imports": false,
"object-literal-sort-keys": false
},
"linterOptions": {
"exclude": [
"./lib/",
"./node_modules"
]
}
}