Skip to content

Commit 9b6662d

Browse files
committed
style: Normalize TOML indentation removing mix of tabs & spaces
1 parent 38a5c67 commit 9b6662d

File tree

7 files changed

+40
-34
lines changed

7 files changed

+40
-34
lines changed

Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,17 @@ members = [
1111
"intl-memoizer",
1212
]
1313

14-
exclude = ["fluent-cli"]
14+
exclude = [
15+
"fluent-cli",
16+
]
1517

1618
[workspace.package]
1719
homepage = "https://www.projectfluent.org"
1820
repository = "https://github.com/projectfluent/fluent-rs"
1921
license = "Apache-2.0 OR MIT"
2022
authors = [
21-
"Zibi Braniecki <zibi@unicode.org>",
22-
"Staś Małolepszy <stas@mozilla.com>"
23+
"Zibi Braniecki <zibi@unicode.org>",
24+
"Staś Małolepszy <stas@mozilla.com>",
2325
]
2426
categories = ["localization", "internationalization"]
2527
keywords = ["localization", "l10n", "i18n", "intl", "internationalization"]

Makefile.internal.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ workspace = false
1919
command = "cargo"
2020
args = ["test", "--all-features"]
2121
# toolchain = "nightly"
22-
env = { RUSTFLAGS = "-Cinstrument-coverage", RUSTDOCFLAGS = "-Cinstrument-coverage", LLVM_PROFILE_FILE = "llvm_profile-%p-%m.profraw" }
22+
env = {
23+
RUSTFLAGS = "-Cinstrument-coverage",
24+
RUSTDOCFLAGS = "-Cinstrument-coverage",
25+
LLVM_PROFILE_FILE = "llvm_profile-%p-%m.profraw"
26+
}
2327

2428
# After generating the .profraw, this step creates the html report.
2529
# Important! Keep in grcov flags in sync with Makefile.internal.toml.

fluent-pseudo/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ categories.workspace = true
1414
keywords.workspace = true
1515
readme = "README.md"
1616
include = [
17-
"src/**/*",
18-
"benches/*.rs",
19-
"Cargo.toml",
20-
"README.md",
21-
"LICENSE-APACHE",
22-
"LICENSE-MIT"
17+
"src/**/*",
18+
"benches/*.rs",
19+
"Cargo.toml",
20+
"README.md",
21+
"LICENSE-APACHE",
22+
"LICENSE-MIT"
2323
]
2424

2525
[dependencies]

fluent-syntax/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ categories.workspace = true
1414
keywords.workspace = true
1515
readme = "README.md"
1616
include = [
17-
"src/**/*",
18-
"benches/*.rs",
19-
"Cargo.toml",
20-
"README.md",
21-
"LICENSE-APACHE",
22-
"LICENSE-MIT"
17+
"src/**/*",
18+
"benches/*.rs",
19+
"Cargo.toml",
20+
"README.md",
21+
"LICENSE-APACHE",
22+
"LICENSE-MIT"
2323
]
2424

2525
[dependencies]

fluent-testing/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ categories.workspace = true
1414
keywords.workspace = true
1515
readme = "README.md"
1616
include = [
17-
"src/**/*",
18-
"resources/**/*",
19-
"Cargo.toml",
20-
"README.md",
21-
"LICENSE-APACHE",
22-
"LICENSE-MIT"
17+
"src/**/*",
18+
"resources/**/*",
19+
"Cargo.toml",
20+
"README.md",
21+
"LICENSE-APACHE",
22+
"LICENSE-MIT"
2323
]
2424

2525
[dependencies]

fluent/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ categories.workspace = true
1515
keywords.workspace = true
1616
readme = "README.md"
1717
include = [
18-
"src/**/*",
19-
"benches/*.rs",
20-
"Cargo.toml",
21-
"README.md",
22-
"LICENSE-APACHE",
23-
"LICENSE-MIT"
18+
"src/**/*",
19+
"benches/*.rs",
20+
"Cargo.toml",
21+
"README.md",
22+
"LICENSE-APACHE",
23+
"LICENSE-MIT"
2424
]
2525

2626
[dependencies]

intl-memoizer/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ categories.workspace = true
1515
keywords.workspace = true
1616
readme = "README.md"
1717
include = [
18-
"src/**/*",
19-
"benches/*.rs",
20-
"Cargo.toml",
21-
"README.md",
22-
"LICENSE-APACHE",
23-
"LICENSE-MIT"
18+
"src/**/*",
19+
"benches/*.rs",
20+
"Cargo.toml",
21+
"README.md",
22+
"LICENSE-APACHE",
23+
"LICENSE-MIT"
2424
]
2525

2626
[dependencies]

0 commit comments

Comments
 (0)