Skip to content

Commit

Permalink
chore(i18n): temporarily ignore i18n in Comments files (#5143)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpetty authored and rexxars committed Nov 28, 2023
1 parent b61a804 commit 32e9d8d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,15 @@ const config = {
'no-attribute-string-literals/no-attribute-string-literals': 'off',
},
},

// Ignore i18n in Comments files for now. This will need to be removed before Comments feature is GA
{
files: ['**/*/Comment*.{js,ts,tsx}'],
rules: {
'i18next/no-literal-string': 'off',
'no-attribute-string-literals/no-attribute-string-literals': 'off',
},
},
],
}

Expand Down

0 comments on commit 32e9d8d

Please sign in to comment.