Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update EIP-1: Add License Checker #5379

Closed
wants to merge 18 commits into from
Closed
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,13 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
unchecked: '1,5069'

check-license-lines:
name: Check licenses
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b

- name: Check License Lines
uses: kt3k/license_checker@d12a6d90c58e30fefed09f2c4d03ba57f4c673a8
18 changes: 18 additions & 0 deletions .licenserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"**/*.{js,ts,sol}": "// SPDX-License-Identifier: CC0-1.0",
"ignore": [
"assets/eip-712",
"assets/eip-3267",
"assets/eip-3475",
"assets/eip-3525",
"assets/eip-4361",
"assets/eip-4400",
"assets/eip-4519",
"assets/eip-4675",
"assets/eip-4886",
"assets/eip-4907",
"assets/eip-4987",
"assets/eip-5006",
"assets/eip-5007"
Pandapip1 marked this conversation as resolved.
Show resolved Hide resolved
]
}