Liquid syntax error: 'raw' tag was never closed
For further actions, you may consider blocking this person and/or reporting abuse
Liquid syntax error: 'raw' tag was never closed
For further actions, you may consider blocking this person and/or reporting abuse
Timeless DEV post...
The most used technology by developers is not Javascript.
It's not Python or HTML.
It hardly even gets mentioned in interviews or listed as a pre-requisite for jobs.
I'm talking about Git and version control of course.
Aadit Unni -
elliott cordo -
Nandini Rajaram -
yogini16 -
Once suspended, amezousan will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, amezousan will be able to comment and publish posts again.
Once unpublished, all posts by amezousan will become hidden and only accessible to themselves.
If amezousan is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to harry.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag amezousan:
Unflagging amezousan will restore default visibility to their posts.
Top comments (1)
Even before I get to the point of letting AWS validate my templates, I usually run them through a local de-linter. Either
jq
or Python'sjson.tool
module works a trick:jq --exit-status . <FILENAME>
python -m json.tool <FILENAME>
Takes care of basic syntax checking. Both also work well inside a CI testing-rule (e.g., a
.travis.yml
file). Which means you can set up a git-trigger to only allow a branch-merge when a basic syntax check passes.