6 Commits

Author SHA1 Message Date
grigorii.desyatnikov 00baf42a2c Merge branch 'master' of github.com:TouchInstinct/Frontend-Common into feature/change_rules_eslint 2021-11-09 19:05:56 +03:00
grigoriishveps b367536be1 change eslint rules (#8)
* change eslint rules
2021-11-09 19:04:10 +03:00
grigorii.desyatnikov 525c730abc add eslint rule 2021-11-09 19:02:08 +03:00
grigorii.desyatnikov 89a6e3b4e8 change eslint rules 2021-11-09 18:52:16 +03:00
Alexander Buntakov e5e4cb376f add type annotation eslint rule (#7) 2021-11-02 19:21:22 +03:00
grigoriishveps f13178df39 Delete tranform object to string with JSON.stringify (#6) 2021-11-02 11:57:00 +03:00
+3
View File
@@ -112,8 +112,11 @@
],
"rules": {
"indent": "off",
"space-infix-ops": "off",
"@typescript-eslint/space-infix-ops": ["error"],
"@typescript-eslint/no-shadow": "warn",
"@typescript-eslint/indent": ["error", 2],
"@typescript-eslint/type-annotation-spacing": ["error"],
"@typescript-eslint/space-before-function-paren": ["error", {
"named": "never",
"anonymous": "always",