Hi all,

I want to add a customized check to my pylintrc file to check and report
cases whenever I define a function in a python file like this:

def foo( var1, name1=value, *args ):

The problem that I want to deal with is that we should not have keyword
arguments( *name1* ) before positional arguments( **args* ). Although the
function can still be called by passing *name1* as positional argument but
there would be no way to not specify *name1* but specify **args*.

How can I add this check to pylintrc file?

Thanks in advance!
-- 
Regards,
Ahirnish
_______________________________________________
code-quality mailing list
code-quality@python.org
https://mail.python.org/mailman/listinfo/code-quality

Reply via email to