MaxSrcFileSize returns the maximum allowed source file size
(o *options.Options)
| 28 | |
| 29 | // MaxSrcFileSize returns the maximum allowed source file size |
| 30 | func (s *Checker) MaxSrcFileSize(o *options.Options) int { |
| 31 | return o.GetInt(keys.MaxSrcFileSize, s.config.MaxSrcFileSize) |
| 32 | } |
| 33 | |
| 34 | // MaxAnimationFrames returns the maximum allowed animation frames |
| 35 | func (s *Checker) MaxAnimationFrames(o *options.Options) int { |
no test coverage detected