ocaml
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add missing SPDX headers

authored by

Kento Okura and committed by
Jon Sterling
1a9235d4 4babd64a

+30
+6
lib/core/URI.ml
··· 1 + (* 2 + * SPDX-FileCopyrightText: 2024 The Forester Project Contributors 3 + * 4 + * SPDX-License-Identifier: GPL-3.0-or-later 5 + *) 6 + 1 7 module Basics = struct 2 8 type t = { 3 9 scheme: string option;
+6
lib/core/URI.mli
··· 1 + (* 2 + * SPDX-FileCopyrightText: 2024 The Forester Project Contributors 3 + * 4 + * SPDX-License-Identifier: GPL-3.0-or-later 5 + *) 6 + 1 7 type t 2 8 3 9 val host : t -> string option
+6
lib/frontend/Html_client.ml
··· 1 + (* 2 + * SPDX-FileCopyrightText: 2024 The Forester Project Contributors 3 + * 4 + * SPDX-License-Identifier: GPL-3.0-or-later 5 + *) 6 + 1 7 (* open Forester_prelude 2 8 open Forester_core 3 9 open Forester_compiler
+4
lib/language_server/test/dune
··· 1 + ;;; SPDX-FileCopyrightText: 2024 The Forester Project Contributors 2 + ;;; 3 + ;;; SPDX-License-Identifier: GPL-3.0-or-later 4 + 1 5 (cram 2 6 (deps test.lua %{bin:forester} %{bin:nvim} %{bin:test-lsp})) 3 7
+4
lib/language_server/test/test.lua
··· 1 + -- SPDX-FileCopyrightText: 2024 The Forester Project Contributors 2 + -- 3 + -- SPDX-License-Identifier: GPL-3.0-or-later 4 + 1 5 vim.filetype.add({ extension = { tree = "forester" } }) 2 6 3 7 vim.cmd("edit trees/index.tree")
+4
lib/language_server/test/test.t
··· 1 + SPDX-FileCopyrightText: 2024 The Forester Project Contributors 2 + 3 + SPDX-License-Identifier: GPL-3.0-or-later 4 + 1 5 $ git clone https://git.sr.ht/~jonsterling/forester-notes.org 2 6 Cloning into 'forester-notes.org'... 3 7 $ cd forester-notes.org