File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6767 "specversion" ,
6868]
6969frozen_locals = dict (locals ())
70- rst_epilog = ' \n ' .join (map (lambda x : f".. |{ x } | replace:: { frozen_locals [x ]} " , variables_to_export ))
71- del frozen_locals
70+ rst_epilog = " \n " .join (map (lambda x : f".. |{ x } | replace:: { frozen_locals [x ]} " , variables_to_export ))
71+ del frozen_locals
Original file line number Diff line number Diff line change @@ -42,14 +42,13 @@ To lint the entire project and get suggested changes:
4242
4343.. code-block :: console
4444
45- $ pylint sigmf tests
45+ $ ruff check
4646
4747 To autoformat the entire project according to our coding standard:
4848
4949.. code-block :: console
5050
51- $ black sigmf tests # autoformat entire project
52- $ isort sigmf tests # format imports for entire project
51+ $ ruff format
5352
5453----
5554Docs
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ dependencies = [
3939 sigmf_convert = " sigmf.convert.__main__:main"
4040 [project .optional-dependencies ]
4141 test = [
42- " pylint " ,
42+ " ruff " ,
4343 " pytest" ,
4444 " pytest-cov" ,
4545 " hypothesis" , # next-gen testing framework
@@ -99,6 +99,9 @@ line-length = 120
9999[tool .isort ]
100100profile = " black"
101101
102+ [tool .ruff ]
103+ line-length = 120
104+
102105[tool .tox ]
103106legacy_tox_ini = '''
104107 [tox]
You can’t perform that action at this time.
0 commit comments