gitbeaker/tslint.json
2019-08-22 11:52:28 -04:00

10 lines
345 B
JSON

{
"extends": ["tslint-config-airbnb", "tslint-plugin-prettier", "tslint-config-prettier"],
"rules": {
"variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case"],
"object-shorthand-properties-first": false,
"max-line-length": [true, { "limit": 100, "ignore-pattern": "`[^`]+`" }],
"import-name": false
}
}