Skip to content

Mark tool paths scope as machine-overridable #18008

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions news/2 Fixes/18008.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Ensure that path towards extenal tools like linters are not synched between
machines. (thanks [Sorin Sbarnea](https://github.com/ssbarnea))
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@
"python.formatting.autopep8Path": {
"default": "autopep8",
"description": "Path to autopep8, you can use a custom version of autopep8 by modifying this setting to include the full path.",
"scope": "resource",
"scope": "machine-overridable",
"type": "string"
},
"python.formatting.blackArgs": {
Expand All @@ -553,7 +553,7 @@
"python.formatting.blackPath": {
"default": "black",
"description": "Path to Black, you can use a custom version of Black by modifying this setting to include the full path.",
"scope": "resource",
"scope": "machine-overridable",
"type": "string"
},
"python.formatting.provider": {
Expand All @@ -580,7 +580,7 @@
"python.formatting.yapfPath": {
"default": "yapf",
"description": "Path to yapf, you can use a custom version of yapf by modifying this setting to include the full path.",
"scope": "resource",
"scope": "machine-overridable",
"type": "string"
},
"python.globalModuleInstallation": {
Expand Down Expand Up @@ -636,7 +636,7 @@
"python.linting.banditPath": {
"default": "bandit",
"description": "Path to bandit, you can use a custom version of bandit by modifying this setting to include the full path.",
"scope": "resource",
"scope": "machine-overridable",
"type": "string"
},
"python.linting.cwd": {
Expand Down Expand Up @@ -705,7 +705,7 @@
"python.linting.flake8Path": {
"default": "flake8",
"description": "Path to flake8, you can use a custom version of flake8 by modifying this setting to include the full path.",
"scope": "resource",
"scope": "machine-overridable",
"type": "string"
},
"python.linting.ignorePatterns": {
Expand Down Expand Up @@ -779,7 +779,7 @@
"python.linting.mypyPath": {
"default": "mypy",
"description": "Path to mypy, you can use a custom version of mypy by modifying this setting to include the full path.",
"scope": "resource",
"scope": "machine-overridable",
"type": "string"
},
"python.linting.prospectorArgs": {
Expand All @@ -800,7 +800,7 @@
"python.linting.prospectorPath": {
"default": "prospector",
"description": "Path to Prospector, you can use a custom version of prospector by modifying this setting to include the full path.",
"scope": "resource",
"scope": "machine-overridable",
"type": "string"
},
"python.linting.pycodestyleArgs": {
Expand Down Expand Up @@ -845,7 +845,7 @@
"python.linting.pycodestylePath": {
"default": "pycodestyle",
"description": "Path to pycodestyle, you can use a custom version of pycodestyle by modifying this setting to include the full path.",
"scope": "resource",
"scope": "machine-overridable",
"type": "string"
},
"python.linting.pydocstyleArgs": {
Expand All @@ -866,7 +866,7 @@
"python.linting.pydocstylePath": {
"default": "pydocstyle",
"description": "Path to pydocstyle, you can use a custom version of pydocstyle by modifying this setting to include the full path.",
"scope": "resource",
"scope": "machine-overridable",
"type": "string"
},
"python.linting.pylamaArgs": {
Expand All @@ -887,7 +887,7 @@
"python.linting.pylamaPath": {
"default": "pylama",
"description": "Path to pylama, you can use a custom version of pylama by modifying this setting to include the full path.",
"scope": "resource",
"scope": "machine-overridable",
"type": "string"
},
"python.linting.pylintArgs": {
Expand Down Expand Up @@ -968,7 +968,7 @@
"python.linting.pylintPath": {
"default": "pylint",
"description": "Path to Pylint, you can use a custom version of pylint by modifying this setting to include the full path.",
"scope": "resource",
"scope": "machine-overridable",
"type": "string"
},
"python.logging.level": {
Expand All @@ -987,19 +987,19 @@
"python.pipenvPath": {
"default": "pipenv",
"description": "Path to the pipenv executable to use for activation.",
"scope": "resource",
"scope": "machine-overridable",
"type": "string"
},
"python.poetryPath": {
"default": "poetry",
"description": "Path to the poetry executable.",
"scope": "resource",
"scope": "machine-overridable",
"type": "string"
},
"python.pythonPath": {
"default": "python",
"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.",
"scope": "resource",
"scope": "machine-overridable",
"type": "string"
},
"python.sortImports.args": {
Expand All @@ -1014,7 +1014,7 @@
"python.sortImports.path": {
"default": "",
"description": "Path to isort script, default using inner version",
"scope": "resource",
"scope": "machine-overridable",
"type": "string"
},
"python.tensorBoard.logDirectory": {
Expand Down Expand Up @@ -1088,7 +1088,7 @@
"python.testing.pytestPath": {
"default": "pytest",
"description": "Path to pytest (pytest), you can use a custom version of pytest by modifying this setting to include the full path.",
"scope": "resource",
"scope": "machine-overridable",
"type": "string"
},
"python.testing.unittestArgs": {
Expand Down