aboutsummaryrefslogtreecommitdiff
path: root/config.json
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-09-04 00:19:15 +0200
committerCharles <sircharlesaze@gmail.com>2019-09-04 00:19:15 +0200
commit08fddd1df75d4d9c76e7fa2e43c157232748abb6 (patch)
treedf48426af3be33124d891905c27efe03eba11426 /config.json
parentabf4dbd8c27ff8f7a370fdd7f4c73924660dff3d (diff)
downloadproject_euler-08fddd1df75d4d9c76e7fa2e43c157232748abb6.tar.gz
project_euler-08fddd1df75d4d9c76e7fa2e43c157232748abb6.tar.bz2
project_euler-08fddd1df75d4d9c76e7fa2e43c157232748abb6.zip
problem file generator
Diffstat (limited to 'config.json')
-rw-r--r--config.json31
1 files changed, 31 insertions, 0 deletions
diff --git a/config.json b/config.json
new file mode 100644
index 0000000..76a6151
--- /dev/null
+++ b/config.json
@@ -0,0 +1,31 @@
+{
+ "languages": {
+ "python": {
+ "extension": "py",
+ "comment" : {
+ "top": "###",
+ "prefix" : "# ",
+ "bottom": "###"
+ }
+ },
+ "haskell": {
+ "extension": "hs",
+ "comment" : {
+ "top": "----",
+ "prefix" : "-- ",
+ "bottom": "----"
+ }
+ },
+ "c": {
+ "extension": "c",
+ "comment" : {
+ "top": "/*",
+ "prefix" : "* ",
+ "bottom": "*/"
+ }
+ }
+ },
+ "url_format": "https://projecteuler.net/problem={index}",
+ "line_wrap": 89,
+ "problem_padding": 2
+}