Skip to content

Commit

Permalink
109 organize files to separate app from content (#111)
Browse files Browse the repository at this point in the history
* Move stores to root folder
Add eslint rule to prefer aliases for imports

* Move awards and sentences around

* Major move for all other types
  • Loading branch information
byronwall authored Sep 30, 2023
1 parent 48c512d commit 71a248a
Show file tree
Hide file tree
Showing 71 changed files with 1,470 additions and 206 deletions.
9 changes: 9 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const config = {
"plugin:@typescript-eslint/recommended-type-checked",
"plugin:@typescript-eslint/stylistic-type-checked",
"plugin:react-server-components/recommended",
"plugin:@dword-design/import-alias/recommended",
],

rules: {
Expand Down Expand Up @@ -73,6 +74,14 @@ const config = {
},
],
"react-server-components/use-client": "error",
"@dword-design/import-alias/prefer-alias": [
"warn",
{
alias: {
"~": "./src/",
},
},
],
},
};

Expand Down
Loading

0 comments on commit 71a248a

Please sign in to comment.