usethesource / rascal-language-servers

An LSP server for Rascal which includes an easy-to-use LSP generator for languages implemented in Rascal, and an interactive terminal REPL.
BSD 2-Clause "Simplified" License
10 stars 7 forks source link

Rascal MF checker should make sure there is always a space after a `:` #300

Open DavyLandman opened 11 months ago

DavyLandman commented 11 months ago
Manifest-Version: 0.0.1
Project-Name: test-lib
Source: src/main/rascal
Require-Libraries:

fails because Require-Libraries: is missing a space after the :

We should add another check to the RASCAL.MF validator

jurgenvinju commented 11 months ago

We might consider moving to yaml? This is so finicky..

jurgenvinju commented 11 months ago

But let's first do that indeed

DavyLandman commented 11 months ago

We might consider moving to yaml? This is so finicky..

Agreed, it's too finicky. Although instead of yaml, which is also finicky, we could go for toml. For example rust & go use that for their configs, and it's much nicer. Close to ini file syntax, but with better options.