From 084529bad2ca29949277c9ddc38c9dedc5d34809 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Wed, 15 May 2024 14:19:39 -0400 Subject: [PATCH] Fix later-to-earlier reference (#3615) ## Summary We generally consider things earlier in the array to be higher-priority, and so that's where project-level settings go when merging. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 40fe22e74..5ee53a0ef 100644 --- a/README.md +++ b/README.md @@ -230,7 +230,7 @@ If both project- and user-level configuration are found, the settings will be me project-level configuration taking precedence. Specifically, if a string, number, or boolean is present in both tables, the project-level value will be used, and the user-level value will be ignored. If an array is present in both tables, the arrays will be concatenated, with the -project-level settings appearing later in the merged array. +project-level settings appearing earlier in the merged array. Settings provided via environment variables take precedence over persistent configuration, and settings provided via the command line take precedence over both.