Skip to content

Commit

Permalink
Merge branch 'main' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
meza committed Jun 3, 2023
2 parents dce901f + dc3a0cb commit 3bc88d7
Show file tree
Hide file tree
Showing 13 changed files with 2,848 additions and 2,106 deletions.
33 changes: 32 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"extends": [
"tailored-tunes",
"plugin:@typescript-eslint/recommended",
"plugin:import/typescript",
"plugin:json/recommended",
"plugin:security/recommended"
],
Expand All @@ -13,9 +15,38 @@
},
"plugins": [
"json",
"@typescript-eslint"
"@typescript-eslint",
"import"
],
"rules": {
"import/order": [
2,
{
"alphabetize": {
"caseInsensitive": false,
"order": "asc"
},
"groups": [
"builtin",
"external",
"internal",
"parent",
"sibling",
"index",
"type"
],
"pathGroups": [
{
"pattern": "react",
"group": "external",
"position": "before"
}
],
"pathGroupsExcludedImportTypes": [
"type"
]
}
],
"@typescript-eslint/no-unused-vars": 2,
"no-console": "off",
"no-else-return": "off",
Expand Down
8 changes: 7 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,13 @@
"matchDepTypes": [
"engines"
],
"automerge": true,
"automerge": false,
"rangeStrategy": "widen"
},
{
"matchDepTypes": [
"engines"
],
"rangeStrategy": "widen"
}
],
Expand Down
Loading

0 comments on commit 3bc88d7

Please sign in to comment.