From 1622459e37ed5c908dc602bb4c77b8e7191a8bbe Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Sat, 12 Mar 2022 08:45:17 +0100 Subject: Simplify hard to maintain copyright notice (#1441) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Simplify hard to maintain copyright notice git is the source of truth for the copyright, copyrite (the tool) was taking exponentially longer with each release, and it's polluting the code with sometime as much as 50 lines of names. * Add a pre-commit hook to check the copyright notice * Fix the existing file so they have a notice * Fix the spacing after the copyright notice * Add a script to generate the CONTRIBUTORS.txt Co-authored-by: Daniël van Noord <13665637+DanielNoord@users.noreply.github.com> --- astroid/arguments.py | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) (limited to 'astroid/arguments.py') diff --git a/astroid/arguments.py b/astroid/arguments.py index b3dc9013..40061d05 100644 --- a/astroid/arguments.py +++ b/astroid/arguments.py @@ -1,18 +1,7 @@ -# Copyright (c) 2015-2016, 2018-2020 Claudiu Popa -# Copyright (c) 2015-2016 Ceridwen -# Copyright (c) 2018 Bryce Guinta -# Copyright (c) 2018 Nick Drozd -# Copyright (c) 2018 Anthony Sottile -# Copyright (c) 2020 hippo91 -# Copyright (c) 2021 Pierre Sassoulas -# Copyright (c) 2021 Tushar Sadhwani <86737547+tushar-deepsource@users.noreply.github.com> -# Copyright (c) 2021 David Liu -# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> -# Copyright (c) 2022 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com> -# Copyright (c) 2022 Alexander Shadchin - # Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html # For details: https://github.com/PyCQA/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/PyCQA/astroid/blob/main/CONTRIBUTORS.txt + from typing import Optional, Set from astroid import nodes -- cgit v1.2.1