Skip to content
This repository was archived by the owner on Jun 13, 2024. It is now read-only.

Commit c85169a

Browse files
committed
edit editor config to support markdown
1 parent d782987 commit c85169a

File tree

2 files changed

+24
-5
lines changed

2 files changed

+24
-5
lines changed

.editorconfig

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,25 @@
11
root = true
22

3-
[*]
3+
[*py]
44
indent_style = space
55
indent_size = 4
66
end_of_line = lf
77
charset = utf-8
88
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*yml]
12+
indent_style = space
13+
indent_size = 2
14+
end_of_line = lf
15+
charset = utf-8
16+
trim_trailing_whitespace = true
17+
insert_final_newline = true
18+
19+
[*md]
20+
indent_style = space
21+
indent_size = 2
22+
end_of_line = lf
23+
charset = utf-8
24+
trim_trailing_whitespace = false
925
insert_final_newline = true

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![Requirements Status](https://requires.io/github/termicoder/termicoder/requirements.svg?branch=master)](https://requires.io/github/termicoder/termicoder/requirements/?branch=master)
88
[![Licence](https://img.shields.io/github/license/termicoder/termicoder.svg)](https://github.com/termicoder/termicoder/blob/master/LICENSE.txt)
99

10-
View, Code, Submit directly from terminal
10+
View, Code, Submit directly from terminal
1111
Made with :heart: by [Divesh Uttamchandani](https://github.com/diveshuttam)
1212

1313
## A python based command line interface for helping in competitive programming. Termicoder aims at automating and simplifying the process of coding, testing and submitting solutions to Online Judges so that one can concentrate only on algorithms
@@ -143,9 +143,12 @@ Unlike [previous implementation](https://github.com/termicoder/termicoder) this
143143
completely does away with `exec` and `eval` calls. And implements `Judges`,
144144
`Problems` and `Contests` as classes instead of modules.
145145

146-
There is an abstract class `Judge` which is used to dispatch operations to a particular judges through `Judge Factory`. Developers can subclass and implement
147-
the `Judge` class externally and attach their module to setup tool entry-point
148-
`termicoder.judge_plugins`. Termicoder dynamically loads these judges and dispatches the operations.
146+
There is an abstract class `Judge` which is used to dispatch operations to a
147+
particular judge instance through `Judge Factory`.
148+
Developers can subclass and implement the `Judge` class externally
149+
and attach their module to setup tool entry-point - `termicoder.judge_plugins`.
150+
151+
Termicoder dynamically loads these judges and dispatches the operations.
149152
Complete documentation for writing judge-plugins and the UML design docs for termicoder would be available soon. By then you can look at the `judge/codechef`
150153
implementation in the repo to see an example implementation . See setup.py for
151154
seeing how to subscribe to entry point `termicoder.judge_plugins`.

0 commit comments

Comments
 (0)