1+ /*
2+ * ecoCode JavaScript plugin - Provides rules to reduce the environmental footprint of your JavaScript programs
3+ * Copyright © 2023 Green Code Initiative (https://www.ecocode.io)
4+ *
5+ * This program is free software: you can redistribute it and/or modify
6+ * it under the terms of the GNU General Public License as published by
7+ * the Free Software Foundation, either version 3 of the License, or
8+ * (at your option) any later version.
9+ *
10+ * This program is distributed in the hope that it will be useful,
11+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
12+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+ * GNU General Public License for more details.
14+ *
15+ * You should have received a copy of the GNU General Public License
16+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
17+ */
18+
119"use strict" ;
220
321module . exports = {
@@ -8,6 +26,7 @@ module.exports = {
826 "plugin:node/recommended" ,
927 "plugin:prettier/recommended" ,
1028 ] ,
29+ plugins : [ "license-header" ] ,
1130 parserOptions : {
1231 ecmaVersion : 2020 ,
1332 } ,
@@ -22,5 +41,6 @@ module.exports = {
2241 ] ,
2342 rules : {
2443 "node/no-unpublished-require" : "off" ,
44+ "license-header/header" : [ "error" , "./docs/license-header.txt" ] ,
2545 } ,
2646} ;
0 commit comments