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

@@ -1 +0,0 @@
| NamingConventionsClasses.py:2:1:2:14 | Class badName | Class names should start in uppercase. |

View File

@@ -1,11 +0,0 @@
# BAD, do not start class or interface name with lowercase letter
class badName:
def hello(self):
print("hello")
# Good, class name starts with capital letter
class GoodName:
def hello(self):
print("hello")

View File

@@ -1 +0,0 @@
Classes/NamingConventionsClasses.ql

View File

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

View File

@@ -1,9 +0,0 @@
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

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