Is there any way to automatically add package/target name and copyright + company name to the header when creating new files while developing a swift package with Xcode 12/13?
Just create a new package (File > New > Package) and add a new file to the sources (File > New > File).
Currently gives me this:
//
// File.swift
//
//
// Created by User Name on 02.10.21.
//
instead of this (like when adding files to regular Xcode project):
//
// File.swift
// MyPackage
//
// Created by User Name on 02.10.21.
// Copyright © 2021 Company Name. All rights reserved.
//
Thanks!