Add CI format check script

This commit is contained in:
nitrohorse
2019-08-03 18:18:03 -07:00
parent 81a0fd91c2
commit 4c44a3c510
6 changed files with 842 additions and 9 deletions

13
bin/get-html-ls.js Normal file
View File

@ -0,0 +1,13 @@
const glob = require('glob');
const pattern = '**/*.html';
const options = {
'ignore': [
'_site/**/*.html',
'node_modules/**/*.html'
]
};
glob(pattern, options, (error, files) => {
if (error) throw error;
process.stdout.write(files.join('\n') + '\n');
});