(paths, langFiles)
| 47 | } |
| 48 | |
| 49 | validate(paths, langFiles) { |
| 50 | const errors = [ |
| 51 | ...this.checkLangFiles(langFiles), |
| 52 | ...this.checkForMissingTranslations(paths, langFiles), |
| 53 | ]; |
| 54 | return errors; |
| 55 | } |
| 56 | |
| 57 | checkForMissingTranslations(paths, langFiles) { |
| 58 | const errors = []; |
no test coverage detected