-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
42 lines (40 loc) · 1.22 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
const path = require('node:path');
const project = path.join(process.cwd(), 'tsconfig.json');
module.exports = {
extends: [
require.resolve('@vercel/style-guide/eslint/node'),
require.resolve('@vercel/style-guide/eslint/browser'),
require.resolve('@vercel/style-guide/eslint/typescript'),
require.resolve('@vercel/style-guide/eslint/react'),
require.resolve('@vercel/style-guide/eslint/next'),
'plugin:tailwindcss/recommended',
],
parserOptions: {
project,
},
settings: {
'import/resolver': { typescript: { project } },
},
globals: {
JSX: true,
},
rules: {},
overrides: [
{
// TypeScript
files: ['*.ts', '*.tsx'],
rules: {
'@typescript-eslint/no-shadow': 'off', // naming is hard
'@typescript-eslint/non-nullable-type-assertion-style': 'off', // using as is more explicit
'@typescript-eslint/strict-boolean-expressions': 'error', // explicit is good
// Imports
'import/no-default-export': 'off', // React components
},
},
{
// Playwright
files: ['tests/**/*.spec.ts', 'tests/**/*.spec.tsx', '**/*.test.tsx'],
extends: [require.resolve('@vercel/style-guide/eslint/playwright-test')],
},
],
};