From df353e1a7d848d56171a126560ffdf2f5e424245 Mon Sep 17 00:00:00 2001 From: aizlee Date: Mon, 2 Sep 2024 16:36:36 +0600 Subject: [PATCH] fix: added the tlint config to git --- tlint.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tlint.json diff --git a/tlint.json b/tlint.json new file mode 100644 index 0000000..866df77 --- /dev/null +++ b/tlint.json @@ -0,0 +1,22 @@ +{ + "disabled": [ + "SpaceAfterSoleNotOperator", + "AlphabeticalImports" + ], + "excluded": [ + "_ide_helper.php", + "_ide_helper_models.php", + ".phpstorm.meta.php", + ".php-cs-fixer.dist.php", + "bootstrap/app.php", + "public/index.php" + ], + "paths": [ + { + "controllers": [ + "app/Http/Services", + "app/Http/Repositories" + ] + } + ] +} \ No newline at end of file