Skip to content

Commit ab8fda9

Browse files
authored
Fixed Module that was checking for the wrong config file name (#117)
* Fixed incorrect name in index.js * Fixed the name of a file to appropriate one.
1 parent b8b8748 commit ab8fda9

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ module.exports = (app, params) => {
5959
// source validatorConfig
6060
if (Object.keys(rules).length === 0) {
6161
// when no config is passed check for a config file
62-
const ruleFile = path.join(appDir, '.htmlvalidator.json')
62+
const ruleFile = path.join(appDir, '.htmlValidate.json')
6363

6464
if (fileExists(ruleFile)) {
6565
rules = require(ruleFile)

0 commit comments

Comments
 (0)