Skip to content

Commit

Permalink
fix: merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
thedaviddias committed May 16, 2020
1 parent 7a7b26a commit 4d904f6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/rules/attr-no-unnecessary-whitespace.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
HTMLHint.addRule({
export default {
id: 'attr-no-unnecessary-whitespace',
description: 'No spaces between attribute names and values.',
init: function (parser, reporter, options) {
Expand All @@ -20,4 +20,4 @@ HTMLHint.addRule({
}
});
}
});
};
1 change: 1 addition & 0 deletions src/rules/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ export { default as tagnameLowercase } from './tagname-lowercase';
export { default as tagnameSpecialChars } from './tagname-specialchars';
export { default as titleRequire } from './title-require';
export { default as tagsCheck } from './tags-check';
export { default as attrNoUnnecessaryWhitespace } from './attr-no-unnecessary-whitespace';
2 changes: 1 addition & 1 deletion test/rules/attr-no-unnecessary-whitespace.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var expect = require('expect.js');

var HTMLHint = require('../../index').HTMLHint;
var HTMLHint = require('../../dist/htmlhint.js').HTMLHint;

var ruldId = 'attr-no-unnecessary-whitespace',
ruleOptions = {};
Expand Down

0 comments on commit 4d904f6

Please sign in to comment.