6

You can find a mention of it here: https://code.visualstudio.com/api/language-extensions/language-server-extension-guide however without any explanation. I couldn't find information about it by googling.

What is the purpose of a .clientrc file?

starball
  • 20,030
  • 7
  • 43
  • 238
Nurbol Alpysbayev
  • 19,522
  • 3
  • 54
  • 89

1 Answers1

0

As mentioned in the comments, ".clientrc" was just chosen as an example file name.

If you google site:code.visualstudio.com clientrc, that page is the only search result. And googling site:github.com/microsoft/vscode "clientrc", all the results are about example code (and most are about that example code specifically).

The .*rc file name pattern is a common convention for application-specific configuration files. There's a baeldung article on it:

Names including rc often signify files or directories of files with code. Specifically, this code consists of commands that are meant to run when a program is executed. Indeed, that program can be an application, but it can also be a whole operating system.

Because of this, the original rc affix and extension both meant “run commands”. In particular, a widely accepted source of the term is the Compatible Time-Sharing System (CTSS)

starball
  • 20,030
  • 7
  • 43
  • 238