We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 616cae4 commit 5db21f9Copy full SHA for 5db21f9
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "content-lint",
3
- "version": "1.1.0",
+ "version": "1.1.1",
4
"type": "module",
5
"main": "index.js",
6
"description": "A node.js infrastructure to validate markdown content.",
validations/naming.js
@@ -7,7 +7,7 @@ import { ValidationIssue } from '../domain/validation-issue.js';
7
*/
8
function validateFolderName(article) {
9
let errorsOccurred = [];
10
- const issueType = ValidationIssue.Type.WARNING;
+ const issueType = ValidationIssue.Type.ERROR;
11
12
if(article.path.indexOf("_") != -1){
13
const errorMessage = "Folder path uses discouraged underscore.";
0 commit comments