Skip to content

Commit

Permalink
✨ add bad linebreaks linter+fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
ctcpip committed Aug 22, 2023
1 parent a2f5b62 commit db16e99
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 1 deletion.
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"private": true,
"scripts": {
"bad-linebreaks": "node ./scripts/bad-linebreaks.mjs",
"bad-linebreaks:fix": "node ./scripts/bad-linebreaks.mjs fix",
"check-delegates": "node -e 'import(\"./scripts/check-delegates.mjs\").then(cd => cd.checkDelegates())'",
"check-delegates-test": "node ./scripts/check-delegates-test.mjs",
"lint": "eslint . --ext .js,.mjs,.cjs",
Expand All @@ -9,10 +11,11 @@
"mdlint": "markdownlint-cli2 '**/*.md' '!node_modules' '!meetings/201*/*.md' '!meetings/202[0-2]*/*.md' '!meetings/2023-0[1-3]/*.md'",
"mdlint:fix": "markdownlint-cli2-fix '**/*.md' '!node_modules' '!meetings/201*/*.md' '!meetings/202[0-2]*/*.md' '!meetings/2023-0[1-3]/*.md'",
"//": "markdownlint most likely to fail, so run that first",
"test": "npm run mdlint && npm run lint && npm run check-delegates-test && npm run check-delegates"
"test": "npm run mdlint && npm run bad-linebreaks && npm run lint && npm run check-delegates-test && npm run check-delegates"
},
"devDependencies": {
"eslint": "^8.41.0",
"glob": "^10.3.3",
"markdownlint-cli2": "^0.7.1"
}
}
74 changes: 74 additions & 0 deletions scripts/bad-linebreaks.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
#!/usr/bin/env node

import fs from 'fs';
import { glob } from 'glob'

function getLine(txt, index) {

let line = 1;

for (let i = 0; i < index; i++) {
if (txt[i] === '\n') {
line++;
}
}

return line;

}

export function findBadLinebreaks(file, fix = false) {

let contents = fs.readFileSync(file, 'utf8').toString()

const re = /(?<=[\w\d ])\n(?=[\w\d])/g;
const matches = Array.from(contents.matchAll(re));

for (const m of matches) {

if(fix) {
contents = contents.substring(0, m.index) + " " + contents.substring(m.index + 1);
}
else {

let start = Math.max(0, m.index - 33);
let end = Math.min(contents.length - 1, m.index + 33);

console.log(`found erroneous linebreak at line ${getLine(contents, m.index)}:\n${contents.substring(start, end)}\n`);

}

}

if(matches.length > 0) {

if(fix){
fs.writeFileSync(file, contents);
console.log(`fixed ${matches.length} erroneous linebreaks`);
}
else {
process.exitCode = 1;
}

}

}

// patterns match what is in package.json mdlint scripts
const files = await glob(
'**/*.md',
{
ignore: [
'node_modules/**',
'meetings/201*/*.md',
'meetings/202[0-2]*/*.md',
'meetings/2023-0[1-3]/*.md',
]
}
);

const fix = process.argv[2] ? process.argv[2] === 'fix' : false;

for (const f of files) {
findBadLinebreaks(f, fix)
}

0 comments on commit db16e99

Please sign in to comment.