Skip to content

Commit 96034dd

Browse files
committed
Add license header in ESLint plugin
1 parent 09f4b43 commit 96034dd

20 files changed

+172
-39
lines changed

eslint-plugin/.eslintrc.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
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

321
module.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
};
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+
*/

eslint-plugin/lib/rule-list.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
/**
2-
* Copyright (C) 2023 Green Code Initiative
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)
34
*
45
* This program is free software: you can redistribute it and/or modify
56
* it under the terms of the GNU General Public License as published by
@@ -12,8 +13,9 @@
1213
* GNU General Public License for more details.
1314
*
1415
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1617
*/
18+
1719
"use strict";
1820

1921
const fs = require("fs");

eslint-plugin/lib/rules/avoid-high-accuracy-geolocation.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
/**
2-
* Copyright (C) 2023 Green Code Initiative
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)
34
*
45
* This program is free software: you can redistribute it and/or modify
56
* it under the terms of the GNU General Public License as published by
@@ -12,8 +13,9 @@
1213
* GNU General Public License for more details.
1314
*
1415
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1617
*/
18+
1719
"use strict";
1820

1921
/** @type {import("eslint").Rule.RuleModule} */

eslint-plugin/lib/rules/no-import-all-from-library.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
/**
2-
* Copyright (C) 2023 Green Code Initiative
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)
34
*
45
* This program is free software: you can redistribute it and/or modify
56
* it under the terms of the GNU General Public License as published by
@@ -12,8 +13,9 @@
1213
* GNU General Public License for more details.
1314
*
1415
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1617
*/
18+
1719
"use strict";
1820

1921
/** @type {import("eslint").Rule.RuleModule} */

eslint-plugin/lib/rules/no-multiple-access-dom-element.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
/**
2-
* Copyright (C) 2023 Green Code Initiative
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)
34
*
45
* This program is free software: you can redistribute it and/or modify
56
* it under the terms of the GNU General Public License as published by
@@ -12,8 +13,9 @@
1213
* GNU General Public License for more details.
1314
*
1415
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1617
*/
18+
1719
"use strict";
1820

1921
/** @type {import("eslint").Rule.RuleModule} */

eslint-plugin/lib/rules/no-multiple-style-changes.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
/**
2-
* Copyright (C) 2023 Green Code Initiative
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)
34
*
45
* This program is free software: you can redistribute it and/or modify
56
* it under the terms of the GNU General Public License as published by
@@ -12,8 +13,9 @@
1213
* GNU General Public License for more details.
1314
*
1415
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1617
*/
18+
1719
"use strict";
1820

1921
/** @type {import("eslint").Rule.RuleModule} */

eslint-plugin/lib/rules/prefer-collections-with-pagination.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
/**
2-
* Copyright (C) 2023 Green Code Initiative
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)
34
*
45
* This program is free software: you can redistribute it and/or modify
56
* it under the terms of the GNU General Public License as published by
@@ -12,8 +13,9 @@
1213
* GNU General Public License for more details.
1314
*
1415
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1617
*/
18+
1719
"use strict";
1820

1921
const PAGINATION_KEY_WORDS = ["page", "pagination", "paginated"];

eslint-plugin/lib/sonar.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
/**
2-
* Copyright (C) 2023 Green Code Initiative
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)
34
*
45
* This program is free software: you can redistribute it and/or modify
56
* it under the terms of the GNU General Public License as published by
@@ -12,7 +13,7 @@
1213
* GNU General Public License for more details.
1314
*
1415
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1617
*/
1718

1819
/**

eslint-plugin/lib/standalone.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
/**
2-
* Copyright (C) 2023 Green Code Initiative
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)
34
*
45
* This program is free software: you can redistribute it and/or modify
56
* it under the terms of the GNU General Public License as published by
@@ -12,7 +13,7 @@
1213
* GNU General Public License for more details.
1314
*
1415
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1617
*/
1718

1819
/**

0 commit comments

Comments
 (0)