Skip to content

Commit

Permalink
Add language for .remarkrc, .remarkignore to VSC
Browse files Browse the repository at this point in the history
By default, VS Code can’t know the language associated with certain files
without extensions.
This addition tells VS Code, when this extension is installed, what language
are associated with `.remarkrc` and `.remarkignore`.

Closes GH-78.

Reviewed-by: Christian Murphy <christian.murphy.42@gmail.com>
Reviewed-by: Titus Wormer <tituswormer@gmail.com>
  • Loading branch information
remcohaszing authored Dec 23, 2021
1 parent f8ee946 commit 0f91d78
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,21 @@
}
}
}
}
},
"languages": [
{
"id": "ignore",
"extensions": [
".remarkignore"
]
},
{
"id": "json",
"filenames": [
".remarkrc"
]
}
]
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
Expand Down

0 comments on commit 0f91d78

Please sign in to comment.