From 667979569a5f640ab645577f5a98c44190213b5e Mon Sep 17 00:00:00 2001 From: kk Date: Tue, 9 Jul 2024 11:13:18 +0200 Subject: [PATCH] Add linter violator --- .../UEPT/Runtime/LinterViolator.cs | 22 +++++++++++++++++++ .../UEPT/Runtime/LinterViolator.cs.meta | 3 +++ 2 files changed, 25 insertions(+) create mode 100644 Assets/_Project/Develop/CompanyName/UEPT/Runtime/LinterViolator.cs create mode 100644 Assets/_Project/Develop/CompanyName/UEPT/Runtime/LinterViolator.cs.meta diff --git a/Assets/_Project/Develop/CompanyName/UEPT/Runtime/LinterViolator.cs b/Assets/_Project/Develop/CompanyName/UEPT/Runtime/LinterViolator.cs new file mode 100644 index 0000000..095707e --- /dev/null +++ b/Assets/_Project/Develop/CompanyName/UEPT/Runtime/LinterViolator.cs @@ -0,0 +1,22 @@ +using UnityEngine; +using System; // not used + +namespace CompanyName.UEPT.Runtime +{ + public class LinterViolator + { + private int Foo; + public string _Bar; + + private void MakeFoo() + { + Debug.Log("I do nothing"); + } + + public string BakeBar() + { + return this._Bar; + } + + } +} \ No newline at end of file diff --git a/Assets/_Project/Develop/CompanyName/UEPT/Runtime/LinterViolator.cs.meta b/Assets/_Project/Develop/CompanyName/UEPT/Runtime/LinterViolator.cs.meta new file mode 100644 index 0000000..9ecaa36 --- /dev/null +++ b/Assets/_Project/Develop/CompanyName/UEPT/Runtime/LinterViolator.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 4bcb4c1fd01c4bfd96fedd7af99da937 +timeCreated: 1720516244 \ No newline at end of file