Remove ipython, replace ruff with black + pyflakes

This commit is contained in:
Evie Litherland-Smith 2024-04-25 14:00:33 +01:00
parent 4258c2de29
commit 4a0829de00

View file

@ -1,8 +1,6 @@
{pkgs, ...}: { {pkgs, ...}: {
xdg.configFile = { xdg.configFile = {
"ruff/pyproject.toml".source = ./ruff.toml;
"pypoetry/config.toml".source = ./pypoetry.toml; "pypoetry/config.toml".source = ./pypoetry.toml;
"ipython/profile_default/ipython_config.json".source = ./ipython_config.json;
"jupyter/jupyter_server_config.py".source = ./jupyter_server_config.py; "jupyter/jupyter_server_config.py".source = ./jupyter_server_config.py;
"jupyter/jupyter_nbconvert_config.py".source = ./jupyter_nbconvert_config.py; "jupyter/jupyter_nbconvert_config.py".source = ./jupyter_nbconvert_config.py;
}; };
@ -25,8 +23,7 @@
# Python # Python
(python3.withPackages (python3.withPackages
(ps: with ps; [python-lsp-server mypy isort ipython])) (ps: with ps; [python-lsp-server mypy pyflakes black isort]))
ruff
# JavaScript / TypeScript # JavaScript / TypeScript
nodejs nodejs