> -----Original Message----- > From: Juraj Linkeš <juraj.lin...@pantheon.tech> > Sent: Friday, July 29, 2022 6:56 PM > To: tho...@monjalon.net; david.march...@redhat.com; Randles, Ronan > <ronan.rand...@intel.com>; honnappa.nagaraha...@arm.com; > ohily...@iol.unh.edu; Tu, Lijuan <lijuan...@intel.com> > Cc: dev@dpdk.org; Juraj Linkeš <juraj.lin...@pantheon.tech> > Subject: [PATCH v4 1/9] dts: add project tools config > > .gitignore contains standard Python-related files. > > Apart from that, add configuration for Python tools used in DTS: > Poetry, dependency and package manager > Black, formatter > Pylama, static analysis > Isort, import sorting > > .editorconfig modifies the line length to 88, which is the default Black > uses. It > seems to be the best of all worlds. [0] > > [0] > https://black.readthedocs.io/en/stable/the_black_code_style/current_style.htm > l#line-length > > Signed-off-by: Owen Hilyard <ohily...@iol.unh.edu> > Signed-off-by: Juraj Linkeš <juraj.lin...@pantheon.tech> > --- > dts/.editorconfig | 7 + > dts/.gitignore | 14 ++ > dts/README.md | 15 ++ > dts/poetry.lock | 474 +++++++++++++++++++++++++++++++++++++++++++++ > dts/pylama.ini | 8 + > dts/pyproject.toml | 43 ++++ > 6 files changed, 561 insertions(+) > create mode 100644 dts/.editorconfig > create mode 100644 dts/.gitignore > create mode 100644 dts/README.md > create mode 100644 dts/poetry.lock > create mode 100644 dts/pylama.ini > create mode 100644 dts/pyproject.toml >
Reviewed-by: Lijuan Tu <lijuan...@intel.com> Thanks, Lijuan