Add configuration for cython-lint, to ignore errors such as:
- Allowed length of line to be 100
- Ignore error code 'E128' continuation line under-indented for visual
indent
Cython-lint is available https://github.com/MarcoGorelli/cython-lint,
expects the file name to be pyproject.toml
Signed-off-by: Kamalesh Babulal <kamalesh.babulal@oracle.com>
Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com>
--- /dev/null
+[tool.cython-lint]
+max-line-length = 100
+# E128 - continuation line under-indented for visual indent
+ignore = ['E128']