filyp / autocorrect

Spelling corrector in python
GNU Lesser General Public License v3.0
448 stars 79 forks source link

Add a CONTRIBUTING.md guide #5

Closed ju-sh closed 4 years ago

ju-sh commented 4 years ago

Let's add instructions to guide contributors.

Like specifying the tools and coding style to be used while making contributions.

filyp commented 4 years ago

I added some guidelines. There's not much of them. If you have some ideas for more of them, let me know.

ju-sh commented 4 years ago

How about adding a CI/CD pipeline? We can start there and decide on what other tools to use from there.

A mechanism to test the code before merging pull requests would be nice.

filyp commented 4 years ago

I'll try to set that up after my exams, when I have more time.

sebincic commented 4 years ago

hi, i need to add word to spanish's language. How can i do that? good job

ju-sh commented 4 years ago

@sebincic I'm not sure, but looks like it has something to do with the link here.

filyp commented 4 years ago

@ju-sh yeah, this file defines the location where the dictionaries are stored @sebincic right now, we don't have a mechanism for adding a single word, we gather the words by processing wikipedia (see here), so I assumed there will be no need to append more words (wikipedia is huge). Maybe your word isn't found, because we cut out the rarely used words, to improve autocorrection (see here). I wouldn't like to have a mechanism for adding single words to the main repo, because it's too much hassle, and for the reasons in the last link. But I can readd those rare words we cut out, if that would help you. Which word is it? Also, for the future, when you have a new issue, start a new github issue, not use some existing one ;)

filyp commented 4 years ago

I decided that setting up this CI/CD pipeline is an overkill, because contributions are really rare, so I don't think it's worth it. Maybe in the future, if this repo gets more alive I'll set something up.

filyp commented 4 years ago

@ju-sh I got some new traffic in this repo, so I followed your suggestion and set up automatic tests and linting here: https://github.com/fsondej/autocorrect/blob/master/.github/workflows/python-app.yml