-
Notifications
You must be signed in to change notification settings - Fork 625
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
149 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
GRAPHQL_URL= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,83 +1,90 @@ | ||
{ | ||
"$schema": "https://json.schemastore.org/eslintrc.json", | ||
"plugins": ["@typescript-eslint", "import"], | ||
"parserOptions": { | ||
"project": "tsconfig.json" | ||
}, | ||
"extends": [ | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:@typescript-eslint/recommended-requiring-type-checking", | ||
"plugin:import/recommended", | ||
"plugin:import/typescript", | ||
"prettier", | ||
"next/core-web-vitals" | ||
], | ||
"rules": { | ||
// sort imports | ||
// "import/order": "error", | ||
"$schema": "https://json.schemastore.org/eslintrc.json", | ||
"plugins": ["@typescript-eslint", "import"], | ||
"parserOptions": { | ||
"project": "tsconfig.json" | ||
}, | ||
"extends": [ | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:@typescript-eslint/recommended-requiring-type-checking", | ||
"plugin:import/recommended", | ||
"plugin:import/typescript", | ||
"prettier", | ||
"next/core-web-vitals" | ||
], | ||
"rules": { | ||
// sort imports | ||
// "import/order": "error", | ||
|
||
// no let exports | ||
"import/no-mutable-exports": "error", | ||
// no let exports | ||
"import/no-mutable-exports": "error", | ||
|
||
"import/no-cycle": "error", | ||
"import/no-default-export": "error", | ||
"import/no-cycle": "error", | ||
"import/no-default-export": "error", | ||
|
||
// allow {} even though it's unsafe but comes handy | ||
"@typescript-eslint/ban-types": [ | ||
"error", | ||
{ | ||
"types": { | ||
"{}": false | ||
} | ||
} | ||
], | ||
// allow {} even though it's unsafe but comes handy | ||
"@typescript-eslint/ban-types": [ | ||
"error", | ||
{ | ||
"types": { | ||
"{}": false | ||
} | ||
} | ||
], | ||
|
||
"@typescript-eslint/consistent-type-imports": [ | ||
"error", | ||
{ | ||
"prefer": "type-imports", | ||
"fixStyle": "inline-type-imports", | ||
"disallowTypeAnnotations": false | ||
} | ||
], | ||
"@typescript-eslint/consistent-type-imports": [ | ||
"error", | ||
{ | ||
"prefer": "type-imports", | ||
"fixStyle": "inline-type-imports", | ||
"disallowTypeAnnotations": false | ||
} | ||
], | ||
|
||
"import/no-duplicates": ["error", { "prefer-inline": true }], | ||
"import/no-duplicates": ["error", { "prefer-inline": true }], | ||
|
||
// false negatives | ||
"import/namespace": ["off"], | ||
// false negatives | ||
"import/namespace": ["off"], | ||
|
||
// we allow empty interfaces | ||
"no-empty-pattern": "off", | ||
"@typescript-eslint/no-empty-interface": "off", | ||
// we allow empty interfaces | ||
"no-empty-pattern": "off", | ||
"@typescript-eslint/no-empty-interface": "off", | ||
|
||
// we allow empty functions | ||
"@typescript-eslint/no-empty-function": "off", | ||
// we allow empty functions | ||
"@typescript-eslint/no-empty-function": "off", | ||
|
||
// we sometimes use async functions that don't await anything | ||
"@typescript-eslint/require-await": "off", | ||
// we sometimes use async functions that don't await anything | ||
"@typescript-eslint/require-await": "off", | ||
|
||
// make sure to `await` inside try…catch | ||
"@typescript-eslint/return-await": ["error", "in-try-catch"], | ||
// make sure to `await` inside try…catch | ||
"@typescript-eslint/return-await": ["error", "in-try-catch"], | ||
|
||
// allow unused vars prefixed with `_` | ||
"@typescript-eslint/no-unused-vars": [ | ||
"error", | ||
{ "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" } | ||
], | ||
// allow unused vars prefixed with `_` | ||
"@typescript-eslint/no-unused-vars": [ | ||
"error", | ||
{ "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" } | ||
], | ||
|
||
// numbers and booleans are fine in template strings | ||
"@typescript-eslint/restrict-template-expressions": [ | ||
"error", | ||
{ "allowNumber": true, "allowBoolean": true } | ||
] | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": ["app/**/*.ts?(x)", "*.ts"], | ||
"rules": { | ||
"import/no-default-export": "off" | ||
} | ||
} | ||
], | ||
"ignorePatterns": ["*.js", "*.jsx"] | ||
} | ||
// numbers and booleans are fine in template strings | ||
"@typescript-eslint/restrict-template-expressions": [ | ||
"error", | ||
{ "allowNumber": true, "allowBoolean": true } | ||
], | ||
|
||
"@typescript-eslint/no-misused-promises": [ | ||
"error", | ||
{ | ||
"checksVoidReturn": false | ||
} | ||
] | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": ["app/**/*.ts?(x)", "*.ts"], | ||
"rules": { | ||
"import/no-default-export": "off" | ||
} | ||
} | ||
], | ||
"ignorePatterns": ["*.js", "*.jsx"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,6 @@ gql/ | |
|
||
# production | ||
/build | ||
>>>>>>> e5095900 (a new beginning) | ||
|
||
# misc | ||
.DS_Store | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// https://nextjs.org/docs/basic-features/eslint#lint-staged | ||
|
||
import path from "path"; | ||
|
||
const buildEslintCommand = (filenames) => | ||
`next lint --fix --file ${filenames | ||
.map((f) => path.relative(process.cwd(), f)) | ||
.join(" --file ")}`; | ||
|
||
export default { | ||
"*.{js,cjs,mjs,jsx,ts,cts,mts,tsx}": [buildEslintCommand], | ||
"*.*": "prettier --write --ignore-unknown", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.