aboutsummaryrefslogtreecommitdiff
path: root/config.json
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2021-06-18 20:17:07 +0200
committerCharles Cabergs <me@cacharle.xyz>2021-06-18 20:17:07 +0200
commitc0aeed4578bdaea39ddbed1b55896948f56b23f3 (patch)
treee3959fe7472c63eab19bab0c81c72e60ae5f6c55 /config.json
parent815fbb2a697a060411f19f70ecdaa5c775b430cb (diff)
downloadproject_euler-c0aeed4578bdaea39ddbed1b55896948f56b23f3.tar.gz
project_euler-c0aeed4578bdaea39ddbed1b55896948f56b23f3.tar.bz2
project_euler-c0aeed4578bdaea39ddbed1b55896948f56b23f3.zip
Refactored generate script
Diffstat (limited to 'config.json')
-rw-r--r--config.json58
1 files changed, 0 insertions, 58 deletions
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
-}