Skip to content

Commit 24decbd

Browse files
committed
Mark tool paths scope as machine-overridable
Related: #17999
1 parent 38a7647 commit 24decbd

File tree

2 files changed

+18
-16
lines changed

2 files changed

+18
-16
lines changed

news/2 Fixes/18008.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Ensure that path towards extenal tools like linters are not synched between
2+
machines. (thanks [Sorin Sbarnea](https://github.com/ssbarnea))

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@
538538
"python.formatting.autopep8Path": {
539539
"default": "autopep8",
540540
"description": "Path to autopep8, you can use a custom version of autopep8 by modifying this setting to include the full path.",
541-
"scope": "resource",
541+
"scope": "machine-overridable",
542542
"type": "string"
543543
},
544544
"python.formatting.blackArgs": {
@@ -553,7 +553,7 @@
553553
"python.formatting.blackPath": {
554554
"default": "black",
555555
"description": "Path to Black, you can use a custom version of Black by modifying this setting to include the full path.",
556-
"scope": "resource",
556+
"scope": "machine-overridable",
557557
"type": "string"
558558
},
559559
"python.formatting.provider": {
@@ -580,7 +580,7 @@
580580
"python.formatting.yapfPath": {
581581
"default": "yapf",
582582
"description": "Path to yapf, you can use a custom version of yapf by modifying this setting to include the full path.",
583-
"scope": "resource",
583+
"scope": "machine-overridable",
584584
"type": "string"
585585
},
586586
"python.globalModuleInstallation": {
@@ -636,7 +636,7 @@
636636
"python.linting.banditPath": {
637637
"default": "bandit",
638638
"description": "Path to bandit, you can use a custom version of bandit by modifying this setting to include the full path.",
639-
"scope": "resource",
639+
"scope": "machine-overridable",
640640
"type": "string"
641641
},
642642
"python.linting.cwd": {
@@ -705,7 +705,7 @@
705705
"python.linting.flake8Path": {
706706
"default": "flake8",
707707
"description": "Path to flake8, you can use a custom version of flake8 by modifying this setting to include the full path.",
708-
"scope": "resource",
708+
"scope": "machine-overridable",
709709
"type": "string"
710710
},
711711
"python.linting.ignorePatterns": {
@@ -779,7 +779,7 @@
779779
"python.linting.mypyPath": {
780780
"default": "mypy",
781781
"description": "Path to mypy, you can use a custom version of mypy by modifying this setting to include the full path.",
782-
"scope": "resource",
782+
"scope": "machine-overridable",
783783
"type": "string"
784784
},
785785
"python.linting.prospectorArgs": {
@@ -800,7 +800,7 @@
800800
"python.linting.prospectorPath": {
801801
"default": "prospector",
802802
"description": "Path to Prospector, you can use a custom version of prospector by modifying this setting to include the full path.",
803-
"scope": "resource",
803+
"scope": "machine-overridable",
804804
"type": "string"
805805
},
806806
"python.linting.pycodestyleArgs": {
@@ -845,7 +845,7 @@
845845
"python.linting.pycodestylePath": {
846846
"default": "pycodestyle",
847847
"description": "Path to pycodestyle, you can use a custom version of pycodestyle by modifying this setting to include the full path.",
848-
"scope": "resource",
848+
"scope": "machine-overridable",
849849
"type": "string"
850850
},
851851
"python.linting.pydocstyleArgs": {
@@ -866,7 +866,7 @@
866866
"python.linting.pydocstylePath": {
867867
"default": "pydocstyle",
868868
"description": "Path to pydocstyle, you can use a custom version of pydocstyle by modifying this setting to include the full path.",
869-
"scope": "resource",
869+
"scope": "machine-overridable",
870870
"type": "string"
871871
},
872872
"python.linting.pylamaArgs": {
@@ -887,7 +887,7 @@
887887
"python.linting.pylamaPath": {
888888
"default": "pylama",
889889
"description": "Path to pylama, you can use a custom version of pylama by modifying this setting to include the full path.",
890-
"scope": "resource",
890+
"scope": "machine-overridable",
891891
"type": "string"
892892
},
893893
"python.linting.pylintArgs": {
@@ -968,7 +968,7 @@
968968
"python.linting.pylintPath": {
969969
"default": "pylint",
970970
"description": "Path to Pylint, you can use a custom version of pylint by modifying this setting to include the full path.",
971-
"scope": "resource",
971+
"scope": "machine-overridable",
972972
"type": "string"
973973
},
974974
"python.logging.level": {
@@ -987,19 +987,19 @@
987987
"python.pipenvPath": {
988988
"default": "pipenv",
989989
"description": "Path to the pipenv executable to use for activation.",
990-
"scope": "resource",
990+
"scope": "machine-overridable",
991991
"type": "string"
992992
},
993993
"python.poetryPath": {
994994
"default": "poetry",
995995
"description": "Path to the poetry executable.",
996-
"scope": "resource",
996+
"scope": "machine-overridable",
997997
"type": "string"
998998
},
999999
"python.pythonPath": {
10001000
"default": "python",
10011001
"description": "(DEPRECATED: Note this setting is not used when in pythonDeprecatePythonPath experiment) Path to Python, you can use a custom version of Python by modifying this setting to include the full path.",
1002-
"scope": "resource",
1002+
"scope": "machine-overridable",
10031003
"type": "string"
10041004
},
10051005
"python.sortImports.args": {
@@ -1014,7 +1014,7 @@
10141014
"python.sortImports.path": {
10151015
"default": "",
10161016
"description": "Path to isort script, default using inner version",
1017-
"scope": "resource",
1017+
"scope": "machine-overridable",
10181018
"type": "string"
10191019
},
10201020
"python.tensorBoard.logDirectory": {
@@ -1088,7 +1088,7 @@
10881088
"python.testing.pytestPath": {
10891089
"default": "pytest",
10901090
"description": "Path to pytest (pytest), you can use a custom version of pytest by modifying this setting to include the full path.",
1091-
"scope": "resource",
1091+
"scope": "machine-overridable",
10921092
"type": "string"
10931093
},
10941094
"python.testing.unittestArgs": {

0 commit comments

Comments
 (0)