Merge branch 'feature/QQQ-38-app-home-widgets' into feature/sprint-10

This commit is contained in:
2022-08-31 16:09:34 -05:00
38 changed files with 1021 additions and 509 deletions

View File

@ -5,7 +5,8 @@
},
"extends": [
"plugin:react/recommended",
"airbnb"
"plugin:import/recommended",
"plugin:import/typescript"
],
"globals": {
"JSX": true
@ -27,7 +28,8 @@
},
"plugins": [
"react",
"@typescript-eslint"
"@typescript-eslint",
"import"
],
"rules": {
"brace-style": [
@ -56,7 +58,26 @@
"devDependencies": true
}
],
"import/order": "off",
"import/order": [
"error",
{
"groups": [
"builtin", // Built-in imports (come from NodeJS native) go first
"external", // <- External imports
"internal", // <- Absolute imports
["sibling", "parent"], // <- Relative imports, the sibling and parent types they can be mingled together
"index", // <- index imports
"unknown"
],
"newlines-between": "never",
"alphabetize": {
/* sort in ascending order. Options: ["ignore", "asc", "desc"] */
"order": "asc",
/* ignore case. Options: [true, false] */
"caseInsensitive": true
}
}
],
"jsx-one-expression-per-line": "off",
"max-len": "off",
"no-console": "off",
@ -82,10 +103,7 @@
]
}
],
"react/jsx-indent": [
"error",
3
],
"react/jsx-indent": "off",
"react/jsx-indent-props": [
"error",
3
@ -95,6 +113,15 @@
"quotes": [
"error",
"double"
],
"sort-imports": [
"error",
{
"ignoreCase": false,
"ignoreDeclarationSort": true,
"ignoreMemberSort": true,
"allowSeparatedGroups": false
}
]
},
"settings": {