-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc.js
53 lines (52 loc) · 1.3 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
43
44
45
46
47
48
49
50
51
52
53
const path = require('path');
module.exports = {
extends: ['@commercetools-frontend/eslint-config-mc-app'],
settings: {
'import/extensions': 'off',
'import/resolver': {
webpack: {
config: {
resolve: {
alias: {
// https://www.gatsbyjs.com/docs/reference/release-notes/migrating-from-v2-to-v3/#reach-router
// To be removed once reach-router natively supports React 17 and gatsbyJS is not vendoring it any more
'@reach/router': path.resolve(
'node_modules/@gatsbyjs/reach-router'
),
},
},
},
},
},
react: {
version: 'detect',
},
},
rules: {
'import/extensions': [
'error',
{
mjs: 'always',
json: 'always',
svg: 'always',
graphql: 'always',
},
],
'react/react-in-jsx-scope': 'off',
'react/jsx-uses-react': 'off',
'no-restricted-imports': [
'error',
{
paths: [
{
name: 'src',
message: 'Importing from "src" is not allowed.',
},
],
patterns: [
'@commercetools-docs/ui-kit/src/*', // Restrict all imports from "src" directory since not available in production build
],
},
],
},
};