Skip to content

Commit

Permalink
Create starter SCSS migration files (#112)
Browse files Browse the repository at this point in the history
* Initialize scss global styles

* Add scss styles for login page

* Convert Menu component to use SCSS modules

* Fix errors with disagreeing eslint and prettier rules
  • Loading branch information
gramliu authored Nov 5, 2022
1 parent 78574fb commit 43360b4
Show file tree
Hide file tree
Showing 18 changed files with 673 additions and 322 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ module.exports = {
"plugin:react/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"next/core-web-vitals"
"next/core-web-vitals",
"prettier"
],
parserOptions: {
ecmaVersion: 2018,
Expand All @@ -23,7 +24,6 @@ module.exports = {
"@typescript-eslint/quotes": ["error", "double"],
camelcase: "off",
"comma-dangle": ["error", "never"],
indent: ["error", 2, { SwitchCase: 1 }],
"no-extra-semi": 2,
"no-irregular-whitespace": 2,
"no-lonely-if": 2,
Expand Down
12 changes: 6 additions & 6 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"tabWidth": 2,
"semi": false,
"singleQuote": false,
"endOfLine": "lf",
"arrowParens": "always",
"trailingComma": "none"
"tabWidth": 2,
"semi": false,
"singleQuote": false,
"endOfLine": "lf",
"arrowParens": "always",
"trailingComma": "none"
}
1 change: 0 additions & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/// <reference types="next" />
/// <reference types="next/types/global" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
Expand Down
Loading

0 comments on commit 43360b4

Please sign in to comment.