Prettier is not breaking strings if they are bigger
then the defined max line length.
With this rule we can make sure lines are not exceeding it,
with the exception of import/export lines.
Signed-off-by: Tiago Melo <tmelo@suse.com>
(cherry picked from commit
fc67af05b67cb2bbb76fcbea35cf10b1284d25de)
Conflicts:
src/pybind/mgr/dashboard/frontend/tslint.json
],
"interface-over-type-literal": true,
"label-position": true,
- "max-line-length": [
- true,
- 100
- ],
+ "max-line-length": [true, {"limit": 100, "ignore-pattern": "^import |^export {(.*?)}"}],
"member-access": false,
"member-ordering": [
true,