https://github.com/ESMValGroup/ESMValTool
Revision 46117954caa5d23ca52394563ac695ae9325ecdc authored by Mattia Righi on 11 June 2018, 18:23:44 UTC, committed by Mattia Righi on 11 June 2018, 18:23:44 UTC
1 parent b126281
Raw File
Tip revision: 46117954caa5d23ca52394563ac695ae9325ecdc authored by Mattia Righi on 11 June 2018, 18:23:44 UTC
Code cleaning
Tip revision: 4611795
.codacy.yml
# codacy configuration file

---

engines:
    coverage:
        enabled: true
        exclude_paths: [
            'tests',
        ]
    metrics:
        enabled: true
    duplication:
        enabled: true
    prospector:
        enabled: true
    pylint:
        enabled: true
        python_version: 3

exclude_paths: [
    'doc/sphinx/**',
    'esmvaltool/doc/sphinx/**',
    # cmor tables
    'esmvaltool/interface_scripts/cmip*-cmor-tables/**',
    # old stuff
    'backend/**',
    'diag_scripts/**',
    'interface_data/**',
    'interface_scripts/**',
    'main.py',
    'nml/**',
    'plot_scripts/**',
    'reformat_scripts/**',
    'variable_defs/**',
]
back to top