Remove snakemake files from being classified as Python files (#76625)

They are not actually syntactically valid Python source.

Fixes #76624
This commit is contained in:
Brett Cannon 2019-07-08 06:18:35 -07:00 committed by Alex Ross
parent d56c4846c2
commit 64031a2360

View file

@ -11,7 +11,7 @@
"contributes": {
"languages": [{
"id": "python",
"extensions": [ ".py", ".rpy", ".pyw", ".cpy", ".gyp", ".gypi", ".snakefile", ".smk", ".pyi", ".ipy"],
"extensions": [ ".py", ".rpy", ".pyw", ".cpy", ".gyp", ".gypi", ".pyi", ".ipy"],
"aliases": [ "Python", "py" ],
"filenames": [ "Snakefile" ],
"firstLine": "^#!\\s*/.*\\bpython[0-9.-]*\\b",