1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
-
+
+
|
### Standards compliancy
A few common platform idioms are supported, some are custom to ST2 in lieu of existing standards:
| type | name | supported | comments |
|------------------------------------|
| env | **HTTP_PROXY=** | ✔ | - |
| dir | **.config/** | ✔ | [XDG](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html). Albeit also using it as cache storage (which it shouldn't be) |
| dir | **.config/** | ✔ | [XDG](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html). Albeit symlinks to .cache remain here. (Tagged with .nobackup stubs however.) |
| dir | **.cache/** | ✔ | [XDG](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html). Just introduced in 2.2.2 to split temporary data from real config/plugins. |
| file | **.netrc** | ✔ | [LSB](https://linux.die.net/man/5/netrc). Also supporting **non-standard `~/.config/netrc` alternative**. |
| file | **.desktop** | ✔ | [XDG](https://specifications.freedesktop.org/desktop-entry-spec/latest/) |
| doc | **man page** | ✔ | LSB |
| doc | **NEWS** | ✔ | [Changes::Spec](http://search.cpan.org/~haarg/CPAN-Changes-0.400002/lib/CPAN/Changes/Spec.pod) |
| doc | **releases.json** | ✔ | [FCc](http://fossil.include-once.org/freshcode/wiki/releases.json). Not a widely used format. |
| doc | **PKG-INFO** | ✔ | [PEP 314](https://www.python.org/dev/peps/pep-0314/). |
| doc | **doap.xml** | ✘ | Not used. |
|