Skip to content

Commit

Permalink
Copy prettier rules and some eslint config from showcase
Browse files Browse the repository at this point in the history
  • Loading branch information
tvanantwerp committed Oct 7, 2022
1 parent 788de8c commit 7fa2566
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions starters/remix-gql-tailwind/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"root": true,
"extends": ["@remix-run/eslint-config"],
"extends": ["plugin:storybook/recommended", "@remix-run/eslint-config"],
"plugins": ["unused-imports"],
"rules": {
"rules": {
"no-unused-vars": "off",
"unused-imports/no-unused-imports": "error",
"unused-imports/no-unused-vars": [
Expand Down
8 changes: 6 additions & 2 deletions starters/remix-gql-tailwind/.prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"trailingComma": "es5",
"singleQuote": true
}
"tabWidth": 2,
"singleQuote": true,
"jsxSingleQuote": true,
"bracketSpacing": true,
"endOfLine": "auto"
}

0 comments on commit 7fa2566

Please sign in to comment.