Pylint custom configuration
Python: Pylint specific configurations:
- To enable Pylint specific configurations, add pylintrc or .pylintrc file inbaseDir at root level of your repository.
- If your Pylint configuration file(pylintrc or .pylintrc) is present in some other directory, you can mention custom file path in embold.yaml.
Eg.
modules:1. - name: pylint
enabled: true
config:
- name: config
type: text
required: true
value: Abc/inference/pylintrc
- config file path is given in embold.yaml file (absolute / relative to baseDir)
- If configuration file is not present in baseDir OR if the custom file path is not mentioned in embold.yaml (pylintrc or .pylintrc, all default rules supported by pylint are enabled
Updated 3 months ago