github-desktop/tslint.json

19 lines
508 B
JSON
Raw Normal View History

2016-05-11 16:16:32 +00:00
{
2017-11-10 03:37:00 +00:00
"extends": ["tslint-config-prettier"],
2020-07-02 14:09:29 +00:00
"rulesDirectory": ["tslint-rules/", "node_modules/tslint-microsoft-contrib/"],
2016-05-11 16:16:32 +00:00
"rules": {
"promise-must-complete": true,
2016-11-17 10:42:24 +00:00
"react-no-unbound-dispatcher-props": true,
"react-proper-lifecycle-methods": true,
"react-readonly-props-and-state": true,
"react-unused-props-and-state": [
true,
{
"props-interface-regex": "Props$",
"state-interface-regex": "State$"
}
],
"react-this-binding-issue": true
2016-05-11 16:16:32 +00:00
}
}