-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.cjs
48 lines (48 loc) · 1.08 KB
/
.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
39
40
41
42
43
44
45
46
47
48
/** @type {import('eslint').Linter.Config} */
module.exports = {
extends: [
'@remix-run/eslint-config',
'@remix-run/eslint-config/node',
'prettier',
],
plugins: ['prettier'],
rules: {
'import/default': 'error',
'import/export': 'error',
'import/named': 'error',
'import/namespace': 'error',
'import/no-unresolved': ['error', { commonjs: true, amd: true }],
'import/order': [
'error',
{
alphabetize: {
order: 'asc',
caseInsensitive: true,
},
pathGroups: [
{
pattern: '~/**',
group: 'internal',
},
],
},
],
'react/jsx-sort-props': [
'error',
{ shorthandLast: true, callbacksLast: true, ignoreCase: true },
],
'sort-imports': ['error', { ignoreDeclarationSort: true }],
'prettier/prettier': [
'error',
{
printWidth: 80,
tabWidth: 2,
singleQuote: true,
trailingComma: 'all',
arrowParens: 'always',
semi: false,
endOfLine: 'auto',
},
],
},
}