Init commit for standalone enodebd

Change-Id: I88eeef5135dd7ba8551ddd9fb6a0695f5325337b
diff --git a/pylint.ini b/pylint.ini
new file mode 100644
index 0000000..195b2a7
--- /dev/null
+++ b/pylint.ini
@@ -0,0 +1,25 @@
+# pylint config (ini format)
+#
+# SPDX-FileCopyrightText: © 2021 Open Networking Foundation <support@opennetworking.org>
+# SPDX-License-Identifier: Apache-2.0
+
+[MESSAGES CONTROL]
+
+disable= invalid-name,
+  missing-class-docstring,
+  missing-function-docstring,
+  missing-module-docstring,
+  import-outside-toplevel,
+  fixme,
+  too-few-public-methods,
+  too-many-lines,
+  too-many-locals,
+  too-many-nested-blocks,
+  too-many-branches,
+  too-many-statements,
+  too-many-arguments,
+  too-many-instance-attributes,
+  too-many-return-statements,
+  global-statement,
+  consider-using-f-string,
+  no-else-return