Return a sorted mapping of ignorables built from a licensish Rule or License.
(licensish)
| 2957 | |
| 2958 | |
| 2959 | def get_normalized_ignorables(licensish): |
| 2960 | """ |
| 2961 | Return a sorted mapping of ignorables built from a licensish Rule or License. |
| 2962 | """ |
| 2963 | return build_ignorables_mapping( |
| 2964 | copyrights=licensish.ignorable_copyrights, |
| 2965 | holders=licensish.ignorable_holders, |
| 2966 | authors=licensish.ignorable_authors, |
| 2967 | urls=licensish.ignorable_urls, |
| 2968 | emails=licensish.ignorable_emails, |
| 2969 | ) |
| 2970 | |
| 2971 | |
| 2972 | def build_ignorables_mapping(copyrights, holders, authors, urls, emails): |
no test coverage detected