Skip to content

Commit ecfaac6

Browse files
authored
Merge pull request #7 from GoupilRobin/patch-1
Fix linter missing .htmlhintrc if not in the active directory
2 parents 77fbe90 + f82fd31 commit ecfaac6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Htmlhint(NodeLinter):
2525
version_requirement = '>= 0.9.13'
2626
# empty regex so plugin initializes properly
2727
regex = r''
28-
config_file = ('--config', '.htmlhintrc', '~')
28+
config_file = ('--config', '.htmlhintrc')
2929

3030
def find_errors(self, output):
3131
"""

0 commit comments

Comments
 (0)