Skip to content

Commit 46b1d47

Browse files
committed
Documentation for global configuration
1 parent 4eefa53 commit 46b1d47

File tree

2 files changed

+26
-8
lines changed

2 files changed

+26
-8
lines changed

Documentation/Configuration.md

+14-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ used as a command line tool or as an API.
55

66
## Command Line Configuration
77

8-
A `swift-format` configuration file is a JSON file with the following
8+
A `.swift-format` configuration file is a JSON file with the following
99
top-level keys and values:
1010

1111
* `version` _(number)_: The version of the configuration file. For now, this
@@ -92,7 +92,7 @@ top-level keys and values:
9292

9393
An example `.swift-format` configuration file is shown below.
9494

95-
```javascript
95+
```json
9696
{
9797
"version": 1,
9898
"lineLength": 100,
@@ -118,6 +118,18 @@ You can also run this command to see the list of rules in the default
118118

119119
$ swift-format dump-configuration
120120

121+
## Global Configuration
122+
123+
If no `.swift-format` can be found for the current project/file, the configuration directories
124+
are searched for a `swift-format/config.json` file. While the filename is different,the
125+
configuration format stays the same.
126+
127+
Locations that are searched, in this order:
128+
129+
- `~/Library/Application Support/swift-format/config.json`
130+
- `$XDG_CONFIG_HOME/swift-format/config.json`
131+
- `~/.config/swift-format/config.json`
132+
121133
## API Configuration
122134

123135
The `SwiftConfiguration` module contains a `Configuration` type that is

README.md

+12-6
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,12 @@ subcommands:
167167
or off respectively, regardless of whether the output is going to a
168168
terminal.
169169

170-
* `--configuration <file>`: The path to a JSON file that contains
170+
* `--configuration <file|string>`: The path to a JSON file that contains
171171
[configurable settings](#configuring-the-command-line-tool) for
172-
`swift-format`. If omitted, a default configuration is use (which
173-
can be seen by running `swift-format dump-configuration`).
172+
`swift-format`. If no file is found, `swift-format` tries to load the json
173+
data as a string, if valid. If the parameter is omitted, a default
174+
configuration is used (which can be seen by running
175+
`swift-format dump-configuration`).
174176

175177
* `--ignore-unparsable-files`: If this option is specified and a source file
176178
contains syntax errors or can otherwise not be parsed successfully by the
@@ -202,14 +204,18 @@ JSON-formatted file named `.swift-format` in the same directory. If one is
202204
found, then that file is loaded to determine the tool's configuration. If the
203205
file is not found, then it looks in the parent directory, and so on.
204206

207+
If there is no project specific configuration file, the
208+
[config directories](Documentation/Configuration.md#Global-Configuration)
209+
are checked for a `swift-format/config.json` configuration file.
210+
205211
If no configuration file is found, a default configuration is used. The
206212
settings in the default configuration can be viewed by running
207213
`swift-format dump-configuration`, which will dump it to standard
208214
output.
209215

210-
If the `--configuration <file>` option is passed to `swift-format`, then that
211-
configuration will be used unconditionally and the file system will not be
212-
searched.
216+
If the `--configuration <file|string>` option is passed to `swift-format`,
217+
then that configuration will be used unconditionally and the file system will
218+
not be searched.
213219

214220
See [Documentation/Configuration.md](Documentation/Configuration.md) for a
215221
description of the configuration file format and the settings that are

0 commit comments

Comments
 (0)