I have trouble setting up the following environment. I’d like to quickly check the code quality of a few SASS files in my local GitLab repository. This is the contents of the .gitlab-ci.yml
file:
include:
- template: Code-Quality.gitlab-ci.yml
stages:
- test
And I’ve put a .codeclimate.yml
file in the root of the repository as well. That setup contains the SCSS lint plugin. But it does not pick up any custom configurations I’ve put in that file, when running a pipeline. It uses the default config and completely ignores the file.
What should I do to make sure the changes in .codeclimate.yml
are picked up? I’m using the GitLab Community Edition by the way.