Skip to content

Commit f301597

Browse files
authored
Merge pull request #25 from green-code-initiative/add-license-headers
Add license headers
2 parents 2886107 + 604008b commit f301597

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+571
-866
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
- [#18](https://github.com/green-code-initiative/ecoCode-javascript/pull/18) Add rule `@ecocode/limit-db-query-results`
1515
- [#19](https://github.com/green-code-initiative/ecoCode-javascript/pull/19) Add rule `@ecocode/no-empty-image-src-attribute`
1616
- [#22](https://github.com/green-code-initiative/ecoCode-javascript/pull/22) Add rule `@ecocode/provide-print-css`
17-
- [#207](https://github.com/green-code-initiative/ecoCode/issues/207) Add release tag analyzis on SonarCloud
17+
- [#25](https://github.com/green-code-initiative/ecoCode-javascript/pull/25) Add license headers
18+
- [ecoCode#207](https://github.com/green-code-initiative/ecoCode/issues/207) Add release tag analyzis on SonarCloud
1819

1920
### Changed
2021

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-css-animations.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/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/limit-db-query-results.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-empty-image-src-attribute.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} */

0 commit comments

Comments
 (0)