chore(eslint): add custom rule to disallow componentOnReady method (#25944)

This commit is contained in:
Liam DeBeasi
2022-09-15 10:51:51 -05:00
committed by GitHub
parent 174c3b30a0
commit 8629dfa9e8
10 changed files with 174 additions and 220 deletions

View File

@ -0,0 +1,5 @@
module.exports = {
rules: {
'no-component-on-ready-method': require('./no-component-on-ready-method.js')
}
}