Skip to content
Snippets Groups Projects
Commit 27d1b665 authored by Benjamin Hättasch's avatar Benjamin Hättasch
Browse files

Allow single-letter variables

parent 1b858a2b
No related branches found
No related tags found
1 merge request!179Code quality improvements
......@@ -46,6 +46,10 @@ module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+)|(AK[A-Z][a-z0-9_]+))$
# Good variable names which should always be accepted, separated by a comma
good-names=i,j,k,a,e,ak,tz,_
# Allow single-letter variables and enforce lowercase variables with underscores otherwise
variable-rgx=[a-z_][a-z0-9_]{0,30}$
[TYPECHECK]
# Tells whether missing members accessed in mixin class should be ignored. A
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment