Skip to content

Commit 43360b4

Browse files
authored
Create starter SCSS migration files (#112)
* 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
1 parent 78574fb commit 43360b4

18 files changed

+673
-322
lines changed

.eslintrc.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ module.exports = {
99
"plugin:react/recommended",
1010
"plugin:@typescript-eslint/eslint-recommended",
1111
"plugin:@typescript-eslint/recommended",
12-
"next/core-web-vitals"
12+
"next/core-web-vitals",
13+
"prettier"
1314
],
1415
parserOptions: {
1516
ecmaVersion: 2018,
@@ -23,7 +24,6 @@ module.exports = {
2324
"@typescript-eslint/quotes": ["error", "double"],
2425
camelcase: "off",
2526
"comma-dangle": ["error", "never"],
26-
indent: ["error", 2, { SwitchCase: 1 }],
2727
"no-extra-semi": 2,
2828
"no-irregular-whitespace": 2,
2929
"no-lonely-if": 2,

.prettierrc

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"tabWidth": 2,
3-
"semi": false,
4-
"singleQuote": false,
5-
"endOfLine": "lf",
6-
"arrowParens": "always",
7-
"trailingComma": "none"
2+
"tabWidth": 2,
3+
"semi": false,
4+
"singleQuote": false,
5+
"endOfLine": "lf",
6+
"arrowParens": "always",
7+
"trailingComma": "none"
88
}

next-env.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/// <reference types="next" />
2-
/// <reference types="next/types/global" />
32
/// <reference types="next/image-types/global" />
43

54
// NOTE: This file should not be edited

0 commit comments

Comments
 (0)