moved to experimental

This commit is contained in:
dilanbhalla
2020-07-01 09:54:58 -07:00
parent dc58f6fa87
commit dc73fcc4e8
12 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1 @@
| NamingConventionsFunctions.py:4:5:4:25 | Function HelloWorld | Function names should start in lowercase. |

View File

@@ -0,0 +1,9 @@
class Test:
# BAD, do not start function name with uppercase letter
def HelloWorld(self):
print("hello world")
# GOOD, function name starts with lowercase letter
def hello_world(self):
print("hello world")

View File

@@ -0,0 +1 @@
experimental/Functions/NamingConventionsFunctions.ql