Skip to content

Commit

Permalink
fix: lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
adebayoileri committed Oct 26, 2024
1 parent 03012a3 commit 455da3e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": { "project": "./tsconfig.json" },
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": 2020,
"sourceType": "module"
},
"env": { "es6": true },
"ignorePatterns": ["node_modules", "build", "coverage"],
"plugins": ["import", "eslint-comments", "functional"],
"plugins": ["import", "eslint-comments", "functional", "@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:eslint-comments/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/typescript",
"plugin:functional/lite",
"prettier",
"next", "next/core-web-vitals",
"prettier/@typescript-eslint"
"prettier"
],
"globals": { "BigInt": true, "console": true, "WebAssembly": true },
"rules": {
Expand Down

0 comments on commit 455da3e

Please sign in to comment.