Hello. Yesterday i installed Sublimelinter becouse i wanted to use the plugins “jshint & csslint”.
In package Control i installed sublimelinter and then sublimeLinter-jshint and sublimeLinter-csslint. After that i went to nodejs and typed these two texts:
npm install -g jshint
npm install -g csslint
Now the two plugins seems to work however i got 2 problems.
the cssLint is not warning which order i write the styles? lets say
p {
width: 100px;
height: 100px;
}
Shouldn’t the cssLint warn me that height should be before width?
Also the jshint seems to work perferctly but it doesn’t warn about the tabs? lets say
if(a == b) {
console.log(“hello”)
}
Everything on the same tab line and it says nothing?
Could anyone help me with these 2 things?
Thanks in advance /Ruffy
