Answer the question
In order to leave comments, you need to log in
How to translate linter in Atom?
I use linters in Atom, in particular for SCSS and JS. The thing is cool, but I want to make it more convenient and translate the linter messages into Russian. Unfortunately, I don't know how to do it right. Can someone tell me?
Answer the question
In order to leave comments, you need to log in
It's better to use Stylelint. All rules for the config can be found here: https://stylelint.io/user-guide/rules/
The config will look something like this:
"declaration-colon-space-before": [
"never",
{
"message": "Не ставь пробел перед двоеточием в правилах"
}
],
"font-family-name-quotes": [
"always-unless-keyword",
{
"message": "Название шрифта нужно заключить в кавычки, только если это не стандартное семейство"
}
],
"font-weight-notation": [
"numeric",
{
"message": "Укажи плотность шрифта (жирность) числом, а не словом"
}
],
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question