File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 44proc_number=` python -c ' import multiprocessing; print(multiprocessing.cpu_count())' `
55
66# Run pylint/flake8 on extensions
7- # - We ignore 'models' and 'operations ' as they typically come from vendored Azure SDKs
8- pylint ./src/* /azext_* / --ignore=models,operations --rcfile=./pylintrc -j $proc_number
9- flake8 --statistics --exclude=models,operations --append-config=./.flake8 ./src/* /azext_* /
7+ # - We ignore 'models', 'operations' and files with suffix '_management_client.py ' as they typically come from vendored Azure SDKs
8+ pylint ./src/* /azext_* / --ignore=models,operations,service_bus_management_client --ignore-patterns=[a-zA-Z_]+_management_client.py --rcfile=./pylintrc -j $proc_number
9+ flake8 --statistics --exclude=models,operations, * _management_client.py --append-config=./.flake8 ./src/* /azext_* /
1010
1111# Run pylint/flake8 on CI files
1212pylint ./scripts/ci/* .py --rcfile=./pylintrc
You can’t perform that action at this time.
0 commit comments