21 lines
511 B
JSON
21 lines
511 B
JSON
/* eslint-env node */
|
|
{
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"next/core-web-vitals",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:import/errors",
|
|
"plugin:prettier/recommended",
|
|
"prettier"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint"],
|
|
"settings": {
|
|
"import/parsers": {
|
|
"@typescript-eslint/parser": [".ts", ".tsx"]
|
|
},
|
|
"import/resolver": "typescript"
|
|
},
|
|
"root": true
|
|
}
|