Fix Styling (#758)

* style: ensure consistent indentation

* style: add spacing

* style: add newlines

* style: simplify html

* fix: update javascript indent size in contribution guidelines
This commit is contained in:
David Malchin
2022-07-18 23:45:46 +03:00
committed by GitHub
parent 657f55b599
commit 7fab401ed2
13 changed files with 197 additions and 202 deletions
+2 -2
View File
@@ -37,9 +37,9 @@ function QBCore.Debug(tbl, indent)
end
function QBCore.ShowError(resource, msg)
print('\x1b[31m['..resource..':ERROR]\x1b[0m '..msg)
print('\x1b[31m[' .. resource .. ':ERROR]\x1b[0m ' .. msg)
end
function QBCore.ShowSuccess(resource, msg)
print('\x1b[32m['..resource..':LOG]\x1b[0m '..msg)
print('\x1b[32m[' .. resource .. ':LOG]\x1b[0m ' .. msg)
end