Skip to content

Commit

Permalink
Add stub of rule for professions
Browse files Browse the repository at this point in the history
  • Loading branch information
suchow committed Feb 11, 2016
1 parent e0658ad commit 754f04c
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions proselint/.proselintrc
Expand Up @@ -45,6 +45,7 @@
"misc.hyperbolic" : true,
"misc.link_checker" : false,
"misc.password" : true,
"misc.professions" : true,
"misc.whence" : true,
"nfl.naughty_words" : false,
"nordquist.redundancy" : true,
Expand Down
30 changes: 30 additions & 0 deletions proselint/checks/misc/professions.py
@@ -0,0 +1,30 @@
# -*- coding: utf-8 -*-
"""Profession.
---
layout: post
source:
source_url:
title: Professions
date: 2014-06-10 12:31:19
categories: writing
---
Professions.
"""
from tools import memoize, preferred_forms_check


@memoize
def check(text):
"""Suggest the preferred forms."""
err = "misc.professions"
msg = "'{}' is the name of that job."

preferences = [

["cobbler", ["shoe repair guy"]],
]

return preferred_forms_check(text, preferences, err, msg)

0 comments on commit 754f04c

Please sign in to comment.