diff --git a/build/gulpfile.hygiene.js b/build/gulpfile.hygiene.js index e1ebc5adafc273620c51e12a3ef94578f1cb3a3a..29e35ec4b10e1df8e81efe949f709361a40b10aa 100644 --- a/build/gulpfile.hygiene.js +++ b/build/gulpfile.hygiene.js @@ -12,6 +12,14 @@ const gulptslint = require('gulp-tslint'); const tsfmt = require('typescript-formatter'); const tslint = require('tslint'); +/** + * Hygiene works by creating cascading subsets of all our files and + * passing them through a bunch of checks. Here are the current subsets, + * each containing the following one, in mathematical notation: + * + * all ⊃ eol ⊇ indentation ⊃ copyright ⊃ typescript + */ + const all = [ '*', 'build/**/*',