diff --git a/.gitignore b/.gitignore index a1827a31b..959c76140 100644 --- a/.gitignore +++ b/.gitignore @@ -110,3 +110,6 @@ docs/source/reference/ .Rproj.user /.luarc.json + +# Developer scratch area +_dev/ diff --git a/pyrightconfig.json b/pyrightconfig.json index 7949fbdb8..284b67df5 100644 --- a/pyrightconfig.json +++ b/pyrightconfig.json @@ -6,6 +6,7 @@ "dist", "typings", "sandbox", + "_dev", "docs", "tests/playwright/deploys/apps", "shiny/templates" diff --git a/setup.cfg b/setup.cfg index 079301384..814ccd013 100644 --- a/setup.cfg +++ b/setup.cfg @@ -124,7 +124,7 @@ console_scripts = # W503: Line break occurred before a binary operator # E203: whitespace before ':' (see https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#flake8) ignore = E302, E501, F403, F405, W503, E203 -extend_exclude = docs, .venv, venv, typings, build +extend_exclude = docs, .venv, venv, typings, build, _dev [isort] profile=black