add lint rules

This commit is contained in:
Drygin 2022-02-24 14:59:55 +03:00
parent 0b4e1059aa
commit 532679e924
1 changed files with 9 additions and 2 deletions

View File

@ -15,13 +15,20 @@
"ecmaVersion": 2018
},
"rules": {
"indent": ["error", 2],
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "never"],
"object-curly-spacing": ["error", "always"],
"comma-dangle": ["error", "always-multiline"],
"require-await": "error",
"prettier/prettier": ["error", { "printWidth": 110 }]
"prettier/prettier": ["error", { "printWidth": 110 }],
"template-curly-spacing": "off",
"indent": [
"error",
2,
{
"ignoredNodes": ["TemplateLiteral"]
}
]
}
}