Skip to content

Commit

Permalink
Disable conflicting rules
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenbleasel committed Jul 19, 2024
1 parent a8a47b2 commit dc096d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/rules/github.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ const baseRules = Object.fromEntries(
availableKeys.map((key) => [`github/${key}`, 'error'])
);

const overrideRules = {};
const overrideRules = {
'github/unescaped-html-literal': 'off',
};

const config = Object.assign(baseRules, overrideRules);

Expand Down
1 change: 1 addition & 0 deletions src/rules/unicorn.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const overrideRules = {
'unicorn/no-keyword-prefix': 'off',
'unicorn/no-null': 'off',
'unicorn/no-array-callback-reference': 'off',
'unicorn/prefer-dom-node-dataset': 'off',
'unicorn/prevent-abbreviations': [
'error',
{
Expand Down

0 comments on commit dc096d2

Please sign in to comment.