1
+ /*
2
+ * This file is part of the Symfony Webpack Encore package.
3
+ *
4
+ * (c) Fabien Potencier <[email protected] >
5
+ *
6
+ * For the full copyright and license information, please view the LICENSE
7
+ * file that was distributed with this source code.
8
+ */
9
+
1
10
module . exports = {
2
11
"root" : true ,
3
12
"plugins" : [ "node" , "header" ] ,
@@ -39,7 +48,7 @@ module.exports = {
39
48
"after" : true
40
49
} ] ,
41
50
"no-console" : "off" ,
42
- "valid-jsdoc" : [ "error" , { "requireParamDescription" : false , "requireReturnDescription" : false } ] ,
51
+ "valid-jsdoc" : [ "error" , { "requireParamDescription" : false , "requireReturnDescription" : false } ] ,
43
52
"node/no-unsupported-features" : [ "error" , { version : 8 } ] ,
44
53
"node/no-deprecated-api" : "error" ,
45
54
"node/no-missing-import" : "error" ,
@@ -54,6 +63,14 @@ module.exports = {
54
63
"node/no-unpublished-bin" : "error" ,
55
64
"node/no-unpublished-require" : "error" ,
56
65
"node/process-exit-as-throw" : "error" ,
57
- "header/header" : [ 2 , "block" , { "pattern" : "This file is part of the Symfony Webpack Encore package" } ]
58
- }
66
+ "header/header" : [ 2 , "block" , { "pattern" : "This file is part of the Symfony Webpack Encore package" } ]
67
+ } ,
68
+ "overrides" : [
69
+ {
70
+ "files" : [ ".eslintrc.js" ] ,
71
+ "rules" : {
72
+ "quotes" : [ "error" , "double" ] ,
73
+ } ,
74
+ }
75
+ ] ,
59
76
} ;
0 commit comments