aboutsummaryrefslogtreecommitdiff
path: root/config.json
diff options
context:
space:
mode:
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
+}