0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-07 03:22:38 +00:00

Custom eslint plugin

This commit is contained in:
Trevor Buckner
2025-09-10 19:16:57 -04:00
parent 02a7920b2c
commit d728126bcc
3 changed files with 117 additions and 2 deletions

7
eslint_plugins/index.js Normal file
View File

@@ -0,0 +1,7 @@
import alignedUseStatePairs from './rules/aligned-useState-pairs.js';
export default {
rules: {
'aligned-useState-pairs': alignedUseStatePairs
}
};