Added marker patterns for SCSS and Sass

This commit is contained in:
Jonathan Karr 2022-01-17 13:35:52 -05:00 committed by GitHub
parent fa33680f84
commit 157201826d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -549,5 +549,37 @@
}
}
]
},
{
"language": "SCSS",
"markers" : [
{
"type": "line",
"pattern": "//"
},
{
"type": "block",
"pattern": {
"start": "/\\*",
"end": "\\*/"
}
}
]
},
{
"language": "Sass",
"markers" : [
{
"type": "line",
"pattern": "//"
},
{
"type": "block",
"pattern": {
"start": "/\\*",
"end": "\\*/"
}
}
]
}
]