@@ -17,21 +17,21 @@ module.exports = {
17
17
} ,
18
18
plugins : {
19
19
prettierPlugin,
20
- eslintComments,
20
+ 'eslint-comments' : eslintComments ,
21
21
import : importPlugin ,
22
22
'i18n-text' : fixupPluginRules ( i18nTextPlugin ) ,
23
- noOnlyTestsPlugin,
23
+ 'no-only-tests' : noOnlyTestsPlugin ,
24
24
github : fixupPluginRules ( github ) ,
25
25
} ,
26
26
rules : {
27
27
'constructor-super' : 'error' ,
28
- 'eslintComments /disable-enable-pair' : 'off' ,
29
- 'eslintComments /no-aggregating-enable' : 'off' ,
30
- 'eslintComments /no-duplicate-disable' : 'error' ,
31
- 'eslintComments /no-unlimited-disable' : 'error' ,
32
- 'eslintComments /no-unused-disable' : 'error' ,
33
- 'eslintComments /no-unused-enable' : 'error' ,
34
- 'eslintComments /no-use' : [ 'error' , { allow : [ 'eslint' , 'eslint-disable-next-line' , 'eslint-env' , 'globals' ] } ] ,
28
+ 'eslint-comments /disable-enable-pair' : 'off' ,
29
+ 'eslint-comments /no-aggregating-enable' : 'off' ,
30
+ 'eslint-comments /no-duplicate-disable' : 'error' ,
31
+ 'eslint-comments /no-unlimited-disable' : 'error' ,
32
+ 'eslint-comments /no-unused-disable' : 'error' ,
33
+ 'eslint-comments /no-unused-enable' : 'error' ,
34
+ 'eslint-comments /no-use' : [ 'error' , { allow : [ 'eslint' , 'eslint-disable-next-line' , 'eslint-env' , 'globals' ] } ] ,
35
35
'github/filenames-match-regex' : 'error' ,
36
36
'func-style' : [ 'error' , 'declaration' , { allowArrowFunctions : true } ] ,
37
37
'github/array-foreach' : 'error' ,
@@ -100,7 +100,7 @@ module.exports = {
100
100
'no-new-symbol' : 'error' ,
101
101
'no-obj-calls' : 'error' ,
102
102
'no-octal' : 'error' ,
103
- 'noOnlyTestsPlugin /no-only-tests' : [
103
+ 'no-only-tests /no-only-tests' : [
104
104
'error' ,
105
105
{
106
106
block : [ 'describe' , 'it' , 'context' , 'test' , 'tape' , 'fixture' , 'serial' , 'suite' ] ,
0 commit comments