-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc.js
28 lines (26 loc) · 881 Bytes
/
.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
const fs = require('fs');
const path = require('path');
const prettierOptions = JSON.parse(fs.readFileSync(path.resolve(__dirname, '.prettierrc'), 'utf8'));
module.exports = {
extends: ['next/core-web-vitals', 'prettier'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'react', 'prettier', 'react-hooks', 'sonarjs', 'import'],
rules: {
'prettier/prettier': ['error', prettierOptions],
},
overrides: [
{
files: ['**/*.ts?(x)'],
rules: {
'prettier/prettier': ['warn', prettierOptions],
'no-console': ['warn', { allow: ['info'] }],
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': [
'warn',
{ vars: 'all', args: 'all', argsIgnorePattern: '^_', varsIgnorePattern: '^_' },
],
'@typescript-eslint/no-empty-function': 'warn',
},
},
],
};