How to use the proselint.tools.supersede function in proselint

To help you get started, we’ve selected a few proselint examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github amperser / SublimeLinter-contrib-proselint / proselint / checks / mau_adducible.py View on Github external
---
layout:     post
error_code: MAU105
source:     Garner's Modern American Usage
source_url: http://amzn.to/15wF76r
title:      adducible
date:       2014-06-10 12:31:19
categories: writing
---

adducible. So spelled---not *adduceable. See -ABLE (A).

"""
from proselint.tools import supersede

check = supersede("adducible", "adduceable", "MAU106")
github amperser / proselint / proselint / checks / mau_addable.py View on Github external
---
layout:     post
error_code: MAU105
source:     Garner's Modern American Usage
source_url: http://amzn.to/15wF76r
title:      acquirer
date:       2014-06-10 12:31:19
categories: writing
---

addable. So spelled---not *addible. See - ABLE (A).

"""
from proselint.tools import supersede

check = supersede("addable", "addible", "MAU105")
github amperser / SublimeLinter-contrib-proselint / proselint / checks / mau_abbetor.py View on Github external
---
layout:     post
error_code: MAU102
source:     Garner's Modern American Usage
source_url: http://amzn.to/15wF76r
title:      abbetor
date:       2014-06-10 12:31:19
categories: writing
---

In both AmE and BrE, abettor is the more usual spelling.

"""
from proselint.tools import supersede

check = supersede("abbetor", "abbeter", "MAU102")
github amperser / proselint / proselint / checks / mau_abbetor.py View on Github external
---
layout:     post
error_code: MAU102
source:     Garner's Modern American Usage
source_url: http://amzn.to/15wF76r
title:      abbetor
date:       2014-06-10 12:31:19
categories: writing
---

In both AmE and BrE, abettor is the more usual spelling.

"""
from proselint.tools import supersede

check = supersede("abbetor", "abbeter", "MAU102")
github amperser / proselint / proselint / checks / mau_abbreviable.py View on Github external
---
layout:     post
error_code: MAU101
source:     Garner's Modern American Usage
source_url: http://amzn.to/15wF76r
title:      abbreviable
date:       2014-06-10 12:31:19
categories: writing
---

It's abbreviable, not abbreviatable.

"""
from proselint.tools import supersede

check = supersede("abbreviable", "abbreviatable", "MAU101")
github amperser / proselint / proselint / checks / mau_adducible.py View on Github external
---
layout:     post
error_code: MAU105
source:     Garner's Modern American Usage
source_url: http://amzn.to/15wF76r
title:      adducible
date:       2014-06-10 12:31:19
categories: writing
---

adducible. So spelled---not *adduceable. See -ABLE (A).

"""
from proselint.tools import supersede

check = supersede("adducible", "adduceable", "MAU106")
github amperser / proselint / proselint / checks / mau_tortfeasor.py View on Github external
source:     Garner's Modern American Usage
source_url: http://amzn.to/15wF76r
title:      tortfeasor
date:       2014-06-10 12:31:19
categories: writing
---

tortfeasor (= one who commits a civil wrong) was once spelled as two words
(tort feasor), then was hyphenated, and now has been fused into a single word.


"""
from proselint.tools import supersede

check = supersede("tortfeasor", "tort feasor", "MAU104")
check = supersede("tortfeasor", "tort-feasor", "MAU104")
github amperser / SublimeLinter-contrib-proselint / proselint / checks / mau_tortfeasor.py View on Github external
source:     Garner's Modern American Usage
source_url: http://amzn.to/15wF76r
title:      tortfeasor
date:       2014-06-10 12:31:19
categories: writing
---

tortfeasor (= one who commits a civil wrong) was once spelled as two words
(tort feasor), then was hyphenated, and now has been fused into a single word.


"""
from proselint.tools import supersede

check = supersede("tortfeasor", "tort feasor", "MAU104")
check = supersede("tortfeasor", "tort-feasor", "MAU104")
github amperser / SublimeLinter-contrib-proselint / proselint / checks / mau_addable.py View on Github external
---
layout:     post
error_code: MAU105
source:     Garner's Modern American Usage
source_url: http://amzn.to/15wF76r
title:      acquirer
date:       2014-06-10 12:31:19
categories: writing
---

addable. So spelled---not *addible. See - ABLE (A).

"""
from proselint.tools import supersede

check = supersede("addable", "addible", "MAU105")
github amperser / proselint / proselint / checks / mau_tortfeasor.py View on Github external
error_code: MAU104
source:     Garner's Modern American Usage
source_url: http://amzn.to/15wF76r
title:      tortfeasor
date:       2014-06-10 12:31:19
categories: writing
---

tortfeasor (= one who commits a civil wrong) was once spelled as two words
(tort feasor), then was hyphenated, and now has been fused into a single word.


"""
from proselint.tools import supersede

check = supersede("tortfeasor", "tort feasor", "MAU104")
check = supersede("tortfeasor", "tort-feasor", "MAU104")