18 lines
518 B
JSON
18 lines
518 B
JSON
// FIXME: import eslint-config-calcom-base from '@calcom/config/eslint
|
|
{
|
|
"root": true,
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:prettier/recommended",
|
|
"plugin:@next/next/recommended"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": { "project": ["./tsconfig.json"] },
|
|
"plugins": ["@typescript-eslint", "prettier"],
|
|
"rules": {
|
|
"prettier/prettier": "error"
|
|
},
|
|
"ignorePatterns": ["src/**/*.test.ts", "src/frontend/generated/*"]
|
|
}
|