You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: rename config file from trc.yaml to trbconfig.yml
Unify configuration filename across all documentation:
- English docs (8 files)
- Japanese docs (8 files)
- Korean docs (8 files)
This aligns with the t-ruby core change in commit 941e6d1.
T-Ruby uses a `trc.yaml` file to configure compiler behavior, source files, output locations, and type checking rules. This reference covers all available configuration options.
12
+
T-Ruby uses a `trbconfig.yml` file to configure compiler behavior, source files, output locations, and type checking rules. This reference covers all available configuration options.
13
13
14
14
## Configuration File
15
15
16
-
Place `trc.yaml` in your project root:
16
+
Place `trbconfig.yml` in your project root:
17
17
18
-
```yaml title="trc.yaml"
18
+
```yaml title="trbconfig.yml"
19
19
# T-Ruby configuration file
20
20
version: ">=1.0.0"
21
21
@@ -688,7 +688,7 @@ types:
688
688
stdlib: true
689
689
```
690
690
691
-
**trc.yaml:**
691
+
**trbconfig.yml:**
692
692
```yaml
693
693
extends: trc.base.yaml
694
694
@@ -726,9 +726,9 @@ workspace:
726
726
strictness: standard
727
727
```
728
728
729
-
Each package has its own `trc.yaml`:
729
+
Each package has its own `trbconfig.yml`:
730
730
731
-
**packages/core/trc.yaml:**
731
+
**packages/core/trbconfig.yml:**
732
732
```yaml
733
733
source:
734
734
include:
@@ -749,7 +749,7 @@ trc --workspace compile
749
749
750
750
A comprehensive configuration for a Rails application:
0 commit comments