From c0aeed4578bdaea39ddbed1b55896948f56b23f3 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 18 Jun 2021 20:17:07 +0200 Subject: Refactored generate script --- config.json | 58 ---------------------------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 config.json (limited to 'config.json') diff --git a/config.json b/config.json deleted file mode 100644 index 812e3d7..0000000 --- a/config.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "languages": { - "python": { - "extension": "py", - "comment" : { - "top": "###", - "prefix" : "# ", - "bottom": "###" - } - }, - - "haskell": { - "extension": "hs", - "comment" : { - "top": "----", - "prefix" : "-- ", - "bottom": "----" - } - }, - - "c": { - "extension": "c", - "comment" : { - "top": "/*", - "prefix" : "* ", - "bottom": "*/" - } - }, - - "lisp": { - "extension": "lisp", - "comment" : { - "top": ";;;;;;;;", - "prefix" : ";;;; ", - "bottom": ";;;;;;;;" - } - }, - "rust": { - "extension": "rs", - "comment": { - "top": "/*", - "prefix" : "* ", - "bottom": "*/" - } - }, - "julia": { - "extension": "jl", - "comment": { - "top": "###", - "prefix" : "# ", - "bottom": "###" - } - } - }, - "url_format": "http://projecteuler.net/problem={index}", - "line_wrap": 89, - "problem_padding": 2 -} -- cgit