make indentation consistent in toml

This commit is contained in:
Josh Thomas 2025-05-02 22:16:43 -05:00
parent 0d816ea0dc
commit f778bef5db
2 changed files with 13 additions and 13 deletions

View file

@ -16,7 +16,7 @@ indent_size = 4
line_length = 120 line_length = 120
multi_line_output = 3 multi_line_output = 3
[*.{css,html,js,json,jsx,proto,sass,scss,svelte,ts,tsx,yml,yaml}] [*.{css,html,js,json,jsx,proto,sass,scss,svelte,toml,ts,tsx,yml,yaml}]
indent_size = 2 indent_size = 2
[*.md] [*.md]

View file

@ -4,14 +4,14 @@ build-backend = "maturin"
[dependency-groups] [dependency-groups]
dev = [ dev = [
"bumpver>=2024.1130", "bumpver>=2024.1130",
"cogapp>=3.4.1", "cogapp>=3.4.1",
"django-stubs>=5.1.1", "django-stubs>=5.1.1",
"maturin>=1.7.8", "maturin>=1.7.8",
"ruff>=0.8.2", "ruff>=0.8.2",
] ]
docs = [ docs = [
"mkdocs-material>=9.5.49", "mkdocs-material>=9.5.49",
] ]
[project] [project]
@ -20,7 +20,7 @@ version = "5.2.0a0"
description = "A language server for the Django web framework" description = "A language server for the Django web framework"
readme = "README.md" readme = "README.md"
authors = [ authors = [
{ name = "Josh Thomas", email = "josh@joshthomas.dev" } { name = "Josh Thomas", email = "josh@joshthomas.dev" }
] ]
requires-python = ">=3.9" requires-python = ">=3.9"
classifiers = [ classifiers = [
@ -86,19 +86,19 @@ version_pattern = "MAJOR.MINOR.PATCH[-TAG[.NUM]]"
[tool.bumpver.file_patterns] [tool.bumpver.file_patterns]
"crates/djls/Cargo.toml" = [ "crates/djls/Cargo.toml" = [
'version = "{version}"', 'version = "{version}"',
] ]
"pyproject.toml" = [ "pyproject.toml" = [
'version = "{pep440_version}"', 'version = "{pep440_version}"',
'current_version = "{version}"', 'current_version = "{version}"',
] ]
[tool.maturin] [tool.maturin]
manifest-path = "crates/djls/Cargo.toml" manifest-path = "crates/djls/Cargo.toml"
strip = true strip = true
include = [ include = [
{ path = "LICENSE", format = "sdist" }, { path = "LICENSE", format = "sdist" },
{ path = "rust-toolchain.toml", format = ["sdist", "wheel"] }, { path = "rust-toolchain.toml", format = ["sdist", "wheel"] },
] ]
[tool.ruff] [tool.ruff]