forked from liferay/clay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
49 lines (47 loc) · 1.03 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
/**
* SPDX-FileCopyrightText: © 2019 Liferay, Inc. <https://liferay.com>
* SPDX-License-Identifier: BSD-3-Clause
*/
const path = require('path');
module.exports = {
env: {
browser: true,
jest: true,
node: true,
},
extends: 'liferay/react',
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
rules: {
'@typescript-eslint/array-type': ['error', {default: 'generic'}],
'@typescript-eslint/naming-convention': [
'error',
{
format: ['PascalCase'],
prefix: ['I'],
selector: 'interface',
},
],
'@typescript-eslint/no-unused-vars': 'error',
'lines-around-comment': 'off',
'no-unused-vars': 'off',
'notice/notice': [
'error',
{
templateFile: path.join(__dirname, 'copyright.js'),
},
],
'prefer-template': 'error',
'react/display-name': 'error',
'react/jsx-boolean-value': 'error',
'react/jsx-no-bind': [
'error',
{
allowArrowFunctions: true,
},
],
'react/jsx-no-literals': 'error',
'react-hooks/exhaustive-deps': 'off',
'sort-vars': 'error',
},
};