-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.cjs
38 lines (36 loc) · 933 Bytes
/
.eslintrc.cjs
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
// @ts-check
/** @type {import('eslint').Linter.Config} */
const config = {
root: true,
extends: [
'@bigcommerce/catalyst/base',
'@bigcommerce/catalyst/react',
'@bigcommerce/catalyst/next',
'@bigcommerce/catalyst/prettier',
],
rules: {
'@typescript-eslint/naming-convention': 'off',
'@next/next/no-html-link-for-pages': 'off',
'import/dynamic-import-chunkname': 'off',
'no-underscore-dangle': ['error', { allow: ['__typename'] }],
'@typescript-eslint/no-restricted-imports': [
'error',
{
paths: [
{
name: ['next/link'],
message: "Please import 'Link' from '~/components/Link' instead.",
},
],
},
],
'check-file/folder-naming-convention': [
'error',
{
'**': 'NEXT_JS_APP_ROUTER_CASE',
},
],
},
ignorePatterns: ['client/generated/**/*.ts'],
};
module.exports = config;