refactor(starter): upgrade and move to typescript

This commit is contained in:
Alexander Shelepenok
2022-04-16 14:25:55 +00:00
parent 67ebabbaac
commit 50a99f57f7
156 changed files with 5350 additions and 7173 deletions

View File

@@ -39,15 +39,17 @@
"import/no-named-as-default": ["off"],
"import/prefer-default-export": ["off"],
"sort-keys": ["off"],
"camelcase": ["off"],
"comma-dangle": ["error", "always-multiline"],
"sort-imports": ["off"],
"no-restricted-globals": ["off"],
"@typescript-eslint/no-unused-vars": ["off"],
"@typescript-eslint/no-use-before-define": ["off"],
"@typescript-eslint/quotes": ["error", "double"],
"@typescript-eslint/naming-convention": ["error", {
"format": ["camelCase", "UPPER_CASE", "PascalCase"],
"selector": "parameter",
"leadingUnderscore": "allow"
"format": ["camelCase", "UPPER_CASE", "snake_case", "PascalCase"],
"leadingUnderscore": "allow",
"selector": "parameter"
}],
"react/static-property-placement": ["off"],
"react/prop-types": ["off"],
@@ -55,7 +57,7 @@
"error",
{
"groups": [
["react"],
["react|path"],
["^\\u0000"],
["^@?\\w"],
["^[^. ]"],