Description
opened on Aug 21, 2020
I created a Mocha config file — .mocharc.yaml
. It appears that this VSCode extension is — incorrectly — deciding that this file matches arc.yaml
(.mocharc.yaml), as seen in the response from the schema store API at https://www.schemastore.org/api/json/catalog.json:
{
name: "arc.json",
description: "A JSON schema for OpenJS Architect",
fileMatch: [
"arc.json",
"arc.yml",
"arc.yaml"
],
url: "https://raw.githubusercontent.com/architect/parser/master/schema.json"
}
That URL returns 404 Not Found
, with the result that Visual Studio shows an error:
And if it did exist . . . I'd get other errors as the Mocha configuration schema is virtually guaranteed to be rather different than the OpenJS Architect schema.
Activity