You are currently viewing Configuring Codacy: Use Your Own Conventions

Configuring Codacy: Use Your Own Conventions

Screenshot from 2016-07-23 01:08:20

All the developers agree on at least one thing – writing clean code is necessary. Because as someone anonymous said, always write a code as if the developer who comes after you is a homicidal maniac who knows your address. So, yeah, writing clean code is very important. Codacy helps in code reviewing and code quality monitoring. You can set codacy in any of your github project. It automatically identifies new static analysis issues, code coverage, code duplication and code complexity evolution in every commit and pull request.

To maintain a clean code, codacy is really helpful as it reviews all the pull requests, commits and the entire code for you based on code style, code coverage and other metrics..

But as we all know, a perfect code style is very difficult to determine. What is more important is readability and maintainability of the code rather than following a strict code style rules. There are various lint guides such as csslint, jslint, pylint, PEP-8 which give you a good idea about clean code style but they are guidelines  rather than rules. So what is important is whatever convention you follow, you follow throughout the code..

So you may need to make some changes in the codacy configuration to check the codebase according to your organisation’s coding conventions rather than a standard lint issue. Unfortunately, there is not very good documentation about this. So, I will share a few common changes I found out myself.

Enable / Disable Checks

Firstly you need to have access for the repository to set up proper checks. Otherwise you can only view the reports. If you have proper write access to the repository in github, you will see 2 additional options in the sidebar –

Screenshot from 2016-07-23 01:26:03

  • Code Pattern – List of all the checks available on codacy to review your code
  • Settings – Settings involving github repository url, codacy badge, repository name, etc.

 

To enable or disable a check, you need to click on code patterns options on sidebar. On clicking you will find a page like this:
Screenshot from 2016-07-23 01:33:36

Now to add or remove a check, you just need to click the checkbox and the configuration is automatically updated.

To see the checks based on language or category, you can click the dropdowns above to select a particular language or category to get checks related to that. For example, there is a javascript lint issue which  says “Enforce ===”.

Screenshot from 2016-07-23 01:37:15

This might not be suitable for your project or maybe your team doesn’t follow this convention, so you can ignore this check by clicking on the checkbox.

Modify Checks

Now the biggest confusion or controversial point that we all have while talking about clean code is Naming Conventions. There is always an argument whether to use snake_case or camelCase or PascalCase. Different lints consider different naming conventions to be correct. However it is believed that an entire codebase should follow a single naming convention. So, what to do?

Well there is a way to configure this and all other checks. For example, to change naming convention for python codes, you can filter according to python and code style. The you would find a check “Enforces naming convention”. To modify the check, click on the “show details” button which you get on hovering over the rule. On clicking the button, you will see something like this:
Screenshot from 2016-07-23 01:44:14

As you can see, there are certain regular expressions present corresponding to various identifier names. Now if you know about regular expressions, you can figure out what this regular expressions. Right now, for our project, the regular expression set for variable type is “[a-z_][a-z0-9_]{0,30}$”. This regular expression basically means it allows any variable name in snake_case which has a length between 1 and 29. Now you might feel like you want the variable names to be of at least 5 letters. So you can modify it as “[a-z_][a-z0-9_]{4,30}$”. Or suppose you want the variable names to start with uppercase letter. So your regular expression should be something like “[A-Z_][a-z0-9_]{0,30}$”. You can check your regular expression our with some example names in regexr.com.

After you have modified the regular expression, click on save parameters. This enforces the new regex to be followed the next time codacy reviews your code.

Re-analyze

After modifying the checks, you might want to re-analyze certain pull requests or commits. This won’t be done automatically in an old pull request at that very instance. But you can again enforce this. Click on “Pull Requests” in the sidebar. Select the pull request you want to re-analyze. It would look something like this.Screenshot from 2016-07-23 01:55:14

Beside the “CURRENT STATUS: Analysed” you can find a recycle button Screenshot from 2016-07-23 01:55:14. Click on this button, and it will start analyzing the pull request according to the new configurations.

saptaks

Full Stack Developer, Open Source enthusiast