Skip to content
This repository has been archived by the owner on Aug 10, 2024. It is now read-only.

Commit

Permalink
Use consistent line length for autopep8, ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-lane committed Dec 17, 2023
1 parent a0f43d5 commit 14ba435
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,17 @@
"editor.defaultFormatter": "ms-python.autopep8",
"editor.formatOnSave": true
},
"autopep8.args": [
"--max-line-length",
"127"
],
"python.analysis.autoImportCompletions": true,
"python.analysis.packageIndexDepths":[
{
"name": "django",
"depth": 5
},
],
"python.formatting.provider": "none",
"python.testing.unittestArgs": [
"--verbose",
"--start-directory",
Expand All @@ -26,8 +29,8 @@
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"ruff.args": [
"ruff.lint.args": [
"--line-length",
"79"
"127"
]
}

0 comments on commit 14ba435

Please sign in to comment.