【작업 효율 향상】 Visual Studio Code에서 Laravel 개발할 때 작업 공간을 조금 보기 쉽게 설정
5629 단어 VisualStudioCode라라벨효율성
이렇게.
이것을 해소하기 위한 설정 예를 씁니다.
도전
평소 만지는 것은 app
, config
, resources
, routes
, tests
, .env
그 이외는 파일을 찾을 때의 방해가 되므로 작업 공간에 표시하지 않게 합니다.
settings 파일 배치
작업 공간 바로 아래에 .vscode/settings.json
라는 파일을 만듭니다.
숨기려는 파일 지정
.vscode/settings.json에 다음과 같이 설명합니다.
.vscode/settings.json{
"files.exclude": {
"**/.git": true,
"**/.vscode": false,
"**/bootstrap": true,
"**/database": true,
"**/public": true,
"**/storage": true,
"**/vendor": true,
"**/xdebug_log": true,
"**/.env.example": true,
"**/.editorconfig": true,
"**/.gitattributes": true,
"**/.gitignore": true,
"**/.styleci.yml": true,
"**/artisan": true,
"**/composer.json": true,
"**/composer.lock": true,
"**/package-lock.json": true,
"**/package.json": true,
"**/phpunit.xml": true,
"**/README.md": true,
"**/server.php": true,
"**/webpack.mix.js": true
}
}
파일을 저장하면 설정이 즉시 반영됩니다.
결과
깨끗이했습니다.
이제 파일을 더 쉽게 찾을 수 있습니다.
설정은 원하는대로 변경합시다.
이상입니다.
VS CODE 카테고리 아카이브 – mrkmyki @ 프리랜서 블로그
Reference
이 문제에 관하여(【작업 효율 향상】 Visual Studio Code에서 Laravel 개발할 때 작업 공간을 조금 보기 쉽게 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/mrkmyki/items/bee9e9d954149b444644
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
작업 공간 바로 아래에
.vscode/settings.json
라는 파일을 만듭니다.숨기려는 파일 지정
.vscode/settings.json에 다음과 같이 설명합니다.
.vscode/settings.json{
"files.exclude": {
"**/.git": true,
"**/.vscode": false,
"**/bootstrap": true,
"**/database": true,
"**/public": true,
"**/storage": true,
"**/vendor": true,
"**/xdebug_log": true,
"**/.env.example": true,
"**/.editorconfig": true,
"**/.gitattributes": true,
"**/.gitignore": true,
"**/.styleci.yml": true,
"**/artisan": true,
"**/composer.json": true,
"**/composer.lock": true,
"**/package-lock.json": true,
"**/package.json": true,
"**/phpunit.xml": true,
"**/README.md": true,
"**/server.php": true,
"**/webpack.mix.js": true
}
}
파일을 저장하면 설정이 즉시 반영됩니다.
결과
깨끗이했습니다.
이제 파일을 더 쉽게 찾을 수 있습니다.
설정은 원하는대로 변경합시다.
이상입니다.
VS CODE 카테고리 아카이브 – mrkmyki @ 프리랜서 블로그
Reference
이 문제에 관하여(【작업 효율 향상】 Visual Studio Code에서 Laravel 개발할 때 작업 공간을 조금 보기 쉽게 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/mrkmyki/items/bee9e9d954149b444644
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
{
"files.exclude": {
"**/.git": true,
"**/.vscode": false,
"**/bootstrap": true,
"**/database": true,
"**/public": true,
"**/storage": true,
"**/vendor": true,
"**/xdebug_log": true,
"**/.env.example": true,
"**/.editorconfig": true,
"**/.gitattributes": true,
"**/.gitignore": true,
"**/.styleci.yml": true,
"**/artisan": true,
"**/composer.json": true,
"**/composer.lock": true,
"**/package-lock.json": true,
"**/package.json": true,
"**/phpunit.xml": true,
"**/README.md": true,
"**/server.php": true,
"**/webpack.mix.js": true
}
}
깨끗이했습니다.
이제 파일을 더 쉽게 찾을 수 있습니다.
설정은 원하는대로 변경합시다.
이상입니다.
VS CODE 카테고리 아카이브 – mrkmyki @ 프리랜서 블로그
Reference
이 문제에 관하여(【작업 효율 향상】 Visual Studio Code에서 Laravel 개발할 때 작업 공간을 조금 보기 쉽게 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/mrkmyki/items/bee9e9d954149b444644텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)