Spacemacs (and flycheck, an autocomplete plugin that interacts with eslint) do not look for eslint configurations, they delegate this to eslint itself. If you get this problem, it means that eslint itself throws an error when trying to load the configuration of your project.
Run eslint --print-config. from the directory of your project and eliminate all the errors that it displays, and this should fix it.
source share