Syntax checking is the verification that a program's source code is technically correct according to the rules of that programming language.
Questions tagged [syntax-checking]
110 questions
0
votes
4 answers
Java based Syntax Check / Rule based toolset
We have been given a project in which we have to accept a set of large text files with very specific requirements, ~150-200 rules. Each rule can pass, fail, not applicable. The pass fail can be the existence or lack of a matching regex. Some…

awm
- 2,723
- 2
- 18
- 26
0
votes
3 answers
JavaScript syntax checking and compression
Do you know a good syntax checker and compressor for JavaScript?
We are currently using JSLINT as syntax checker and YUI for compression. Note we are using the library ExtJS for UI.

rossoft
- 2,182
- 17
- 17
0
votes
1 answer
vim syntax checking whitespace
I want configuring my .vimrc for do somes auto syntax checking.
That is my problem, i want auto change somes syntax by another.
I deal with the specific caracter in computer programation like = ; , . ( { [ <.
An exemple it's better than words :
void…

Max
- 1
- 1
-1
votes
1 answer
Python. How to remove redundant/wrong parentheses in string
For example input string:
s = "fo)o)fus()(bar((em)ro(em))dah((y(XXX)"
As a result I expect:
fus()((em)ro(em))dah(XXX)
It's like result should contain all "healthy" blocks, which has open "(" and closed ")" + "healthy" text between them. All sick…

Yuriy Leonov
- 536
- 1
- 9
- 33
-3
votes
1 answer
create syntax checker vim plugin for a new Programming language
I want to create a new vim syntax checker for a new programming language that is not used widely, first i tried to read the code of the follwing plugins neomake, syntastic
, and Ale in order to understand how i can build my own syntax checker plugin…

abderrahmane Mustapha
- 19
- 1
- 5