forked from liferay/alloy-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
77 lines (77 loc) · 1.6 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
module.exports = {
env: {
browser: true,
node: true,
es6: true,
jest: true,
},
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 2018,
ecmaFeatures: {
jsx: true,
},
},
extends: ['plugin:react/recommended', 'liferay', 'prettier'],
plugins: ['babel'],
rules: {
'require-jsdoc': 'warn',
'new-cap': [
'error',
{
capIsNewExceptions: [
'ButtonActionStyle',
'ButtonCfgProps',
'ButtonCommand',
'ButtonCommandActive',
'ButtonKeystroke',
'ButtonProps',
'ButtonStateClasses',
'ButtonStyle',
'ToolbarButtons',
'WidgetArrowBox',
'WidgetDropdown',
'WidgetExclusive',
'WidgetFocusManager',
'WidgetPosition',
],
newIsCapExceptions: [
'CKEDITOR.command',
'CKEDITOR.dom.comment',
'CKEDITOR.dom.documentFragment',
'CKEDITOR.dom.element',
'CKEDITOR.dom.elementPath',
'CKEDITOR.dom.event',
'CKEDITOR.dom.node',
'CKEDITOR.dom.nodeList',
'CKEDITOR.dom.range',
'CKEDITOR.dom.rangeList',
'CKEDITOR.dom.selection',
'CKEDITOR.dom.text',
'CKEDITOR.dom.walker',
'CKEDITOR.dom.window',
'CKEDITOR.htmlParser.basicWriter',
'CKEDITOR.htmlParser.element',
'CKEDITOR.htmlParser.filter',
'CKEDITOR.htmlParser.fragment.fromHtml',
'CKEDITOR.style',
'CKEDITOR.template',
],
},
],
'babel/no-invalid-this': 'error',
'no-inner-declarations': 'off',
'no-invalid-this': 'off',
'react/prop-types': 'warn',
'valid-jsdoc': 'warn',
},
settings: {
react: {
version: 'detect',
},
},
globals: {
AlloyEditor: true,
CKEDITOR: true,
},
};