drupal code quality
1.0.0
Drupal Code Quality는 Drupal 코드 베이스에 대한 정적 분석을 지원하도록 설계된 Docker 이미지입니다. 이는 Adam Culp의 PHP Code Quality Docker 이미지를 기반으로 합니다. 따라서 adamculp/php-code-quality에 있는 모든 도구도 여기에 있습니다. 자세한 내용은 해당 패키지의 README.md를 참조하세요.
Drupal 관점에서 이 Docker 이미지는 다음을 추가합니다.
저장소의 루트 디렉터리에서 다음 명령을 실행하세요. 아래 명령은 Drupal 사이트가 docroot
디렉터리에 있다고 가정합니다.
이는 /app
아래에 마운트된 코드를 사용하여 셸에 들어가는 가장 간단한 명령입니다.
docker run -it --rm -v "$PWD":/app -w /app hussainweb/drupal-code-quality:latest bash
docker run -it --rm -v "$PWD":/app -w /app hussainweb/drupal-code-quality:latest phpcs --standard=Drupal --extensions=php,module,inc,install,test,profile,theme docroot/modules/custom/ docroot/themes/custom/
자세한 내용은 adamculp/php-code-quality의 사용법을 참조하세요.