Skip to content

Commit

Permalink
chore: allow dev deps in css.ts files
Browse files Browse the repository at this point in the history
  • Loading branch information
maxholman committed Jan 11, 2023
1 parent b447337 commit e17f4f2
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 @@ -30,5 +30,14 @@ module.exports = {
],
},
},
{
files: ['src/pages/**/*.tsx?', 'lib/**/*.css.ts'],
rules: {
'import/no-extraneous-dependencies': [
'error',
{ devDependencies: false },
],
},
},
],
};

0 comments on commit e17f4f2

Please sign in to comment.