forked from liferay/clay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
52 lines (50 loc) · 1.19 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
/**
* 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: ['plugin:@liferay/react'],
parser: '@typescript-eslint/parser',
plugins: ['@liferay', '@typescript-eslint'],
rules: {
'@liferay/empty-line-between-elements': 'off',
'@liferay/no-dynamic-require': 'off',
'@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-for-of-loops/no-for-of-loops': '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/no-unescaped-entities': 'off',
'react-hooks/exhaustive-deps': 'off',
'sort-vars': 'error',
},
};