I have 2 files in the same directory, say a.el and a-test.el.
a.el
;; some functions
(provide 'a)
a-test.el
(require 'a)
flycheck put a warning on the require in a-test.el says
Cannot open load files: a
How do I make flycheck find the required file in the same directory ?