4 files changed +79
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Copyright Kani Contributors
2
+ # SPDX-License-Identifier: Apache-2.0 OR MIT
3
+
4
+ * @ model-checking/kani-devs
Original file line number Diff line number Diff line change
1
+ > Please add a description of your PR.
2
+ > If this is a solution to an open challenge, please explain your solution.
3
+ >
4
+ > Don't forget to check our book to ensure your solution satisfy the overall
5
+ > requirements as well as the challenge success criteria.
6
+ >
7
+
8
+ Resolves #ISSUE-NUMBER
9
+
10
+ By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.
Original file line number Diff line number Diff line change
1
+ # Copyright Kani Contributors
2
+ # SPDX-License-Identifier: Apache-2.0 OR MIT
3
+
4
+ # https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5
+
6
+ version : 2
7
+ updates :
8
+ - package-ecosystem : " github-actions"
9
+ directory : " /"
10
+ schedule :
11
+ interval : " weekly"
Original file line number Diff line number Diff line change
1
+ # Copyright Kani Contributors
2
+ # SPDX-License-Identifier: Apache-2.0 OR MIT
3
+
4
+ # # File system
5
+ .DS_Store
6
+ desktop.ini
7
+
8
+ # # Editor
9
+ * .swp
10
+ * .swo
11
+ Session.vim
12
+ .cproject
13
+ .idea
14
+ * .iml
15
+ .vscode
16
+ .project
17
+ .favorites.json
18
+ .settings /
19
+ * .orig
20
+ * .rej
21
+
22
+ # # Build
23
+ /book /
24
+ /build /
25
+ /target
26
+ * .rlib
27
+ * .rmeta
28
+ * .mir
29
+
30
+ # # Temporary files
31
+ * ~
32
+ \# *
33
+ \# * \#
34
+ . # *
35
+
36
+ # # Python
37
+ __pycache__ /
38
+ * .py [cod ]
39
+ * $py.class
40
+
41
+ # # Node
42
+ node_modules
43
+ package-lock.json
44
+
45
+ # Tools
46
+ # # Kani
47
+ * .out
48
+
49
+
50
+ # Added by cargo
51
+ #
52
+ # already existing elements were commented out
53
+
54
+ # /target
0 commit comments