Skip to content

Commit

Permalink
avoid throwing space/tab errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nbriz committed Jan 9, 2024
1 parent 589c625 commit d52d328
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/netitor.js
Original file line number Diff line number Diff line change
Expand Up @@ -185130,7 +185130,7 @@ const HTMLHintRules = {
// 'inline-script-disabled': true,
// 'inline-style-disabled': true, // too annoying i think
// formatting
'space-tab-mixed-disabled': true,
'space-tab-mixed-disabled': false,
'spec-char-escape': true
}

Expand Down
2 changes: 1 addition & 1 deletion build/netitor.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/linters/htmlLinter.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const HTMLHintRules = {
// 'inline-script-disabled': true,
// 'inline-style-disabled': true, // too annoying i think
// formatting
'space-tab-mixed-disabled': true,
'space-tab-mixed-disabled': false,
'spec-char-escape': true
}

Expand Down

0 comments on commit d52d328

Please sign in to comment.