Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

next #246

Merged
merged 9 commits into from
Nov 29, 2024
Merged

next #246

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ CONTRIBUTING.html
__pycache__/
.ruff_cache/
.pytest_cache/
pyrightconfig.json

### Lua
lua_modules
Expand Down
9 changes: 8 additions & 1 deletion ruff.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
[lint]
ignore = ["E501"]
select = ["ALL"]
preview = true
ignore = ["CPY001", "E501", "D103", "D211", "D213", "FIX001", "TD001", "TD003"]

[per-file-ignores]
"test_*.py" = [
"ANN001", "ANN201", "D100", "INP001", "S101", "S404", "S603", "T201"
]
1 change: 1 addition & 0 deletions shared_shell.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ fi

eval "$(dircolors ~/.dircolors-solarized/dircolors.ansi-dark)"

export DIRENV_LOG_FORMAT=""
# shellcheck disable=SC2046,SC2086
eval "$(direnv hook $(basename $SHELL))"
2 changes: 2 additions & 0 deletions vim/ftplugin/python.vim
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ endif
let b:ale_fixers = ['autoimport']

let g:ale_python_flake8_options = '--ignore=E501,W503'

let g:ale_python_auto_virtualenv = 1
1 change: 1 addition & 0 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ let g:tex_flavor='latex'
let g:codeium_filetypes_disabled_by_default = v:true

let g:codeium_filetypes = {
\ "bash": v:true,
\ "Dockerfile": v:true,
\ "go": v:true,
\ "perl": v:true,
Expand Down