Skip to content

Commit 62ae848

Browse files
authored
Mark tool paths scope as machine-overridable (#18008)
Related: #17999
1 parent fad4b8b commit 62ae848

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
@@ -522,7 +522,7 @@
522522
"python.formatting.autopep8Path": {
523523
"default": "autopep8",
524524
"description": "Path to autopep8, you can use a custom version of autopep8 by modifying this setting to include the full path.",
525-
"scope": "resource",
525+
"scope": "machine-overridable",
526526
"type": "string"
527527
},
528528
"python.formatting.blackArgs": {
@@ -537,7 +537,7 @@
537537
"python.formatting.blackPath": {
538538
"default": "black",
539539
"description": "Path to Black, you can use a custom version of Black by modifying this setting to include the full path.",
540-
"scope": "resource",
540+
"scope": "machine-overridable",
541541
"type": "string"
542542
},
543543
"python.formatting.provider": {
@@ -564,7 +564,7 @@
564564
"python.formatting.yapfPath": {
565565
"default": "yapf",
566566
"description": "Path to yapf, you can use a custom version of yapf by modifying this setting to include the full path.",
567-
"scope": "resource",
567+
"scope": "machine-overridable",
568568
"type": "string"
569569
},
570570
"python.globalModuleInstallation": {
@@ -620,7 +620,7 @@
620620
"python.linting.banditPath": {
621621
"default": "bandit",
622622
"description": "Path to bandit, you can use a custom version of bandit by modifying this setting to include the full path.",
623-
"scope": "resource",
623+
"scope": "machine-overridable",
624624
"type": "string"
625625
},
626626
"python.linting.cwd": {
@@ -689,7 +689,7 @@
689689
"python.linting.flake8Path": {
690690
"default": "flake8",
691691
"description": "Path to flake8, you can use a custom version of flake8 by modifying this setting to include the full path.",
692-
"scope": "resource",
692+
"scope": "machine-overridable",
693693
"type": "string"
694694
},
695695
"python.linting.ignorePatterns": {
@@ -763,7 +763,7 @@
763763
"python.linting.mypyPath": {
764764
"default": "mypy",
765765
"description": "Path to mypy, you can use a custom version of mypy by modifying this setting to include the full path.",
766-
"scope": "resource",
766+
"scope": "machine-overridable",
767767
"type": "string"
768768
},
769769
"python.linting.prospectorArgs": {
@@ -784,7 +784,7 @@
784784
"python.linting.prospectorPath": {
785785
"default": "prospector",
786786
"description": "Path to Prospector, you can use a custom version of prospector by modifying this setting to include the full path.",
787-
"scope": "resource",
787+
"scope": "machine-overridable",
788788
"type": "string"
789789
},
790790
"python.linting.pycodestyleArgs": {
@@ -829,7 +829,7 @@
829829
"python.linting.pycodestylePath": {
830830
"default": "pycodestyle",
831831
"description": "Path to pycodestyle, you can use a custom version of pycodestyle by modifying this setting to include the full path.",
832-
"scope": "resource",
832+
"scope": "machine-overridable",
833833
"type": "string"
834834
},
835835
"python.linting.pydocstyleArgs": {
@@ -850,7 +850,7 @@
850850
"python.linting.pydocstylePath": {
851851
"default": "pydocstyle",
852852
"description": "Path to pydocstyle, you can use a custom version of pydocstyle by modifying this setting to include the full path.",
853-
"scope": "resource",
853+
"scope": "machine-overridable",
854854
"type": "string"
855855
},
856856
"python.linting.pylamaArgs": {
@@ -871,7 +871,7 @@
871871
"python.linting.pylamaPath": {
872872
"default": "pylama",
873873
"description": "Path to pylama, you can use a custom version of pylama by modifying this setting to include the full path.",
874-
"scope": "resource",
874+
"scope": "machine-overridable",
875875
"type": "string"
876876
},
877877
"python.linting.pylintArgs": {
@@ -952,7 +952,7 @@
952952
"python.linting.pylintPath": {
953953
"default": "pylint",
954954
"description": "Path to Pylint, you can use a custom version of pylint by modifying this setting to include the full path.",
955-
"scope": "resource",
955+
"scope": "machine-overridable",
956956
"type": "string"
957957
},
958958
"python.logging.level": {
@@ -971,19 +971,19 @@
971971
"python.pipenvPath": {
972972
"default": "pipenv",
973973
"description": "Path to the pipenv executable to use for activation.",
974-
"scope": "resource",
974+
"scope": "machine-overridable",
975975
"type": "string"
976976
},
977977
"python.poetryPath": {
978978
"default": "poetry",
979979
"description": "Path to the poetry executable.",
980-
"scope": "resource",
980+
"scope": "machine-overridable",
981981
"type": "string"
982982
},
983983
"python.pythonPath": {
984984
"default": "python",
985985
"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.",
986-
"scope": "resource",
986+
"scope": "machine-overridable",
987987
"type": "string"
988988
},
989989
"python.sortImports.args": {
@@ -998,7 +998,7 @@
998998
"python.sortImports.path": {
999999
"default": "",
10001000
"description": "Path to isort script, default using inner version",
1001-
"scope": "resource",
1001+
"scope": "machine-overridable",
10021002
"type": "string"
10031003
},
10041004
"python.tensorBoard.logDirectory": {
@@ -1072,7 +1072,7 @@
10721072
"python.testing.pytestPath": {
10731073
"default": "pytest",
10741074
"description": "Path to pytest (pytest), you can use a custom version of pytest by modifying this setting to include the full path.",
1075-
"scope": "resource",
1075+
"scope": "machine-overridable",
10761076
"type": "string"
10771077
},
10781078
"python.testing.unittestArgs": {

0 commit comments

Comments
 (0)