From 7d810911490e86edee423dbf2cfb24f7d8b9dde8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw=20Barzowski?= Date: Sun, 21 Feb 2021 20:59:24 +0100 Subject: [PATCH] =?UTF-8?q?Linter=20README=20=E2=80=93=20replace=20unicode?= =?UTF-8?q?=20asterisks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I think they were an artifact of copying from a LaTeX-generated PDF. --- linter/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/linter/README.md b/linter/README.md index dc0842d..3f98688 100644 --- a/linter/README.md +++ b/linter/README.md @@ -6,11 +6,11 @@ This is a linter for Jsonnet. It is alpha stage, but it should be already useful The linter detect the following kinds of issues: * "Type" problems, such as: - ∗ Accessing nonexistent fields - ∗ Calling a function with a wrong number of arguments or named arguments + * Accessing nonexistent fields + * Calling a function with a wrong number of arguments or named arguments which do not match the parameters - ∗ Trying to call a value which is not a function - ∗ Trying to index a value which is not an object, array or a string + * Trying to call a value which is not a function + * Trying to index a value which is not an object, array or a string * Unused variables * Endlessly looping constructs, which are always invalid, but often appear as a result of confusion about language semantics (e.g. local x = x + 1) * Anything that is statically detected during normal execution, such as syntax errors and undeclared variables.