Skip to content

Commit c244b37

Browse files
authored
1 parent b5e28fb commit c244b37

File tree

11 files changed

+1431
-4
lines changed

11 files changed

+1431
-4
lines changed

packages/frosted-ui/.eslintrc.js

+5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
1+
const { plugin } = require('postcss');
2+
13
module.exports = {
24
root: true,
35
extends: ['custom'],
46
rules: {
57
'@typescript-eslint/no-empty-interface': 'off',
8+
'react-hooks/rules-of-hooks': 'error',
9+
'react-hooks/exhaustive-deps': 'warn',
610
},
711
globals: {
812
module: 'readonly',
913
},
14+
plugins: ['react-hooks'],
1015
};

0 commit comments

Comments
 (0)