govCMS / scaffold-tooling

6 stars 17 forks source link

fix: ensure audits inspect final config #326

Closed yusufhm closed 3 months ago

yusufhm commented 3 months ago

False positives were identified in some cases when running Shipshape; --include-overridden ensures the final config is inspected.

An example is:

$ drush config:get system.performance css
'system.performance:css':
  preprocess: false
  gzip: true

$ drush config:get system.performance js
'system.performance:js':
  preprocess: false
  gzip: true

$ drush config:get --include-overridden system.performance css
'system.performance:css':
  preprocess: 1
  gzip: true

$ drush config:get --include-overridden system.performance js
'system.performance:js':
  preprocess: 1
  gzip: true