Skip to content

Commit

Permalink
Fix eslint ignorePatterns for l10n files.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaehring committed Jul 11, 2023
1 parent 7de4fea commit 8b0de31
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ module.exports = {
plugins: [
'vue'
],
ignorePatterns: ['src/l10n/**'],
ignorePatterns: [
'packages/field-kit/src/l10n/**',
],
// add your custom rules here
rules: {
// don't require .vue extension when importing
Expand Down

0 comments on commit 8b0de31

Please sign in to comment.