-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdvent-of-Code-2024.sublime-project
81 lines (81 loc) · 1.94 KB
/
Advent-of-Code-2024.sublime-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"build_systems":
[
{
"env":
{
"PYTHONIOENCODING": "utf8",
},
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"name": "Project: PyPy 3",
"selector": "source.python",
"shell_cmd": "pypy3.10 -u \"$file\"",
"path": "/opt/homebrew/opt/pypy3.10/bin:/opt/homebrew/opt/pypy3.10/libexec/bin:$PATH",
"windows":
{
"shell_cmd": "pypy3.10 -u \"$file\"",
},
},
{
"env":
{
"PYTHONIOENCODING": "utf8",
},
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"name": "Project: Python 3",
"selector": "source.python",
"shell_cmd": "python3.13 -u \"$file\"",
"path": "/opt/homebrew/opt/[email protected]/bin:/opt/homebrew/opt/[email protected]/libexec/bin:$PATH",
"windows":
{
"shell_cmd": "python3.13 -u \"$file\"",
},
},
],
"folders":
[
{
"name": "Source code",
"path": "src",
"file_exclude_patterns":
[
"*.pyc"
],
"folder_exclude_patterns":
[
"__pycache__"
],
},
{
"name": "Puzzle data",
"path": "data",
},
{
"name": "Answers",
"path": ".submission-history",
},
{
"name": "Misc",
"path": "misc",
},
{
"name": "Project",
"path": ".",
"folder_exclude_patterns":
[
"*"
],
}
],
"settings": {
"pep8_ignore":
[
"E114",
"E111",
"E121",
"E309",
"E401",
"E704"
],
},
}