{"analyzedAt":"2022-06-27T01:51:54.784Z","collected":{"metadata":{"name":"textlint-rule-stop-words","scope":"unscoped","version":"3.0.1","description":"Textlint rule to find filler words, buzzwords and chiches","keywords":["textlintrule","textlint","rule","stop","words","stop-words","filler","buzzword","chiche"],"date":"2022-05-04T17:20:06.586Z","author":{"name":"Artem Sapegin","url":"http://sapegin.me"},"publisher":{"username":"sapegin","email":"artem@sapegin.ru"},"maintainers":[{"username":"sapegin","email":"artem@sapegin.ru"}],"repository":{"type":"git","url":"git+https://github.com/sapegin/textlint-rule-stop-words.git"},"links":{"npm":"https://www.npmjs.com/package/textlint-rule-stop-words","homepage":"https://github.com/sapegin/textlint-rule-stop-words","repository":"https://github.com/sapegin/textlint-rule-stop-words","bugs":"https://github.com/sapegin/textlint-rule-stop-words/issues"},"license":"MIT","dependencies":{"lodash":"^4.17.15","split-lines":"^2.0.0","textlint-rule-helper":"^2.1.1"},"devDependencies":{"eslint":"^6.8.0","eslint-config-tamia":"^7.1.1","husky":"^4.0.7","jest":"^24.9.0","lint-staged":"^10.0.7","prettier":"^1.19.1","textlint-tester":"^5.1.13"},"releases":[{"from":"2022-05-28T00:00:00.000Z","to":"2022-06-27T00:00:00.000Z","count":0},{"from":"2022-03-29T00:00:00.000Z","to":"2022-06-27T00:00:00.000Z","count":3},{"from":"2021-12-29T00:00:00.000Z","to":"2022-06-27T00:00:00.000Z","count":3},{"from":"2021-06-27T00:00:00.000Z","to":"2022-06-27T00:00:00.000Z","count":3},{"from":"2020-06-27T00:00:00.000Z","to":"2022-06-27T00:00:00.000Z","count":7}],"hasTestScript":true,"hasSelectiveFiles":true,"readme":"# textlint-rule-stop-words\n\n[![textlint fixable rule](https://img.shields.io/badge/textlint-fixable-green.svg?style=social)](https://textlint.github.io/) [![npm](https://img.shields.io/npm/v/textlint-rule-stop-words.svg)](https://www.npmjs.com/package/textlint-rule-stop-words) [![Node.js CI status](https://github.com/sapegin/textlint-rule-stop-words/workflows/Node.js%20CI/badge.svg)](https://github.com/sapegin/textlint-rule-stop-words/actions)\n\n[textlint](https://github.com/textlint/textlint) rule to find filler words, buzzwords and clichés — 1600+ words and phrases in English.\n\nFor example:\n\n- and etc.\n- the month of\n- thick as a brick\n- utilize\n\n(You can disable some words or add your own.)\n\n![](https://d3vv6lp55qjaqc.cloudfront.net/items/2P3W3w0d1N0K421H333m/textlint-rule-stop-words.png)\n\n## Installation\n\n```shell\nnpm install textlint-rule-stop-words\n```\n\n## Usage\n\n```shell\ntextlint --fix --rule stop-words Readme.md\n```\n\n## Configuration\n\nYou can configure the rule in your `.textlintrc`:\n\n```js\n{\n  \"rules\": {\n    \"stop-words\": {\n      // Load default dictionary (see dict.txt in the repository)\n      \"defaultWords\": true,\n      // Syntax elements to skip. Overrides the default\n      \"skip\": [\"Blockquote\"],\n      // Extra words\n      \"words\": [\n        [\"etc.\"],\n        [\"you can\"],\n        // With a replacement\n        [\"blacklist\", \"denylist\"],\n        // Ensure correct capitalization\n        [\"asciidoc\", \"AsciiDoc\"]\n      ],\n      // Excluded words\n      \"exclude\": [\n        \"utilize\",\n        \"period of time\"\n      ],\n      // OR load terms from a file\n      \"words\": \"~/stop-words.txt\"\n    }\n  }\n}\n```\n\nCheck the [default dictionary](./dict.txt). Read more about [configuring textlint](https://github.com/textlint/textlint/blob/master/docs/configuring.md).\n\n## Tips & tricks\n\nUse [textlint-filter-rule-comments](https://github.com/textlint/textlint-filter-rule-comments) to disable stop-words check for particular paragraphs:\n\n```markdown\n<!-- textlint-disable stop-words -->\n\nOh my javascript!\n\n<!-- textlint-enable -->\n```\n\n## Sources\n\n- Grammar & Writing for Creators\n- [297 Flabby Words and Phrases That Rob Your Writing of All Its Power](https://smartblogger.com/weak-writing/)\n- [no-cliches](https://github.com/dunckr/no-cliches/)\n- [fillers](https://github.com/wooorm/fillers/)\n- [hedges](https://github.com/wooorm/hedges/)\n- [weasels](https://github.com/wooorm/weasels/)\n- [buzzwords](https://github.com/wooorm/buzzwords/)\n- [retext-simplify](https://github.com/wooorm/retext-simplify/)\n\n## Other textlint rules\n\n- [textlint-rule-apostrophe](https://github.com/sapegin/textlint-rule-apostrophe) — correct apostrophe usage\n- [textlint-rule-diacritics](https://github.com/sapegin/textlint-rule-diacritics) — words with diacritics\n- [textlint-rule-terminology](https://github.com/sapegin/textlint-rule-terminology) — correct terms spelling\n- [textlint-rule-title-case](https://github.com/sapegin/textlint-rule-title-case) — fix titles to use AP/APA style\n\n## Change log\n\nThe change log can be found on the [Releases page](https://github.com/sapegin/textlint-rule-stop-words/releases).\n\n## Contributing\n\nEveryone is welcome to contribute. Please take a moment to review the [contributing guidelines](Contributing.md).\n\n## Sponsoring\n\nThis software has been developed with lots of coffee, buy me one more cup to keep it going.\n\n<a href=\"https://www.buymeacoffee.com/sapegin\" target=\"_blank\"><img src=\"https://cdn.buymeacoffee.com/buttons/lato-orange.png\" alt=\"Buy Me A Coffee\" height=\"51\" width=\"217\" ></a>\n\n## Authors and license\n\n[Artem Sapegin](https://sapegin.me) and [contributors](https://github.com/sapegin/textlint-rule-stop-words/graphs/contributors).\n\nMIT License, see the included [License.md](License.md) file."},"npm":{"downloads":[{"from":"2022-06-26T00:00:00.000Z","to":"2022-06-27T00:00:00.000Z","count":0},{"from":"2022-06-20T00:00:00.000Z","to":"2022-06-27T00:00:00.000Z","count":678},{"from":"2022-05-28T00:00:00.000Z","to":"2022-06-27T00:00:00.000Z","count":2783},{"from":"2022-03-29T00:00:00.000Z","to":"2022-06-27T00:00:00.000Z","count":22086},{"from":"2021-12-29T00:00:00.000Z","to":"2022-06-27T00:00:00.000Z","count":48532},{"from":"2021-06-27T00:00:00.000Z","to":"2022-06-27T00:00:00.000Z","count":97756}],"starsCount":0},"github":{"starsCount":19,"forksCount":6,"subscribersCount":3,"issues":{"count":34,"openCount":3,"distribution":{"3600":6,"10800":5,"32400":1,"97200":12,"291600":5,"874800":1,"2624400":1,"7873200":1,"23619600":0,"70858800":1,"212576400":1},"isDisabled":false},"contributors":[{"username":"Mogztter","commitsCount":5},{"username":"sapegin","commitsCount":32},{"username":"pixelastic","commitsCount":2},{"username":"dependabot[bot]","commitsCount":20}],"commits":[{"from":"2022-06-20T00:00:00.000Z","to":"2022-06-27T00:00:00.000Z","count":0},{"from":"2022-05-28T00:00:00.000Z","to":"2022-06-27T00:00:00.000Z","count":0},{"from":"2022-03-29T00:00:00.000Z","to":"2022-06-27T00:00:00.000Z","count":5},{"from":"2021-12-29T00:00:00.000Z","to":"2022-06-27T00:00:00.000Z","count":5},{"from":"2021-06-27T00:00:00.000Z","to":"2022-06-27T00:00:00.000Z","count":8}]},"source":{"files":{"readmeSize":3771,"testsSize":7774},"badges":[{"urls":{"original":"https://img.shields.io/npm/v/textlint-rule-stop-words.svg","shields":"https://img.shields.io/npm/v/textlint-rule-stop-words.svg","content":"https://img.shields.io/npm/v/textlint-rule-stop-words.json"},"info":{"service":"npm","type":"version","modifiers":{"type":"v"}}}],"linters":["editorconfig","eslint","prettier"],"outdatedDependencies":{"split-lines":{"required":"^2.0.0","stable":"3.0.0","latest":"3.0.0"}}}},"evaluation":{"quality":{"carefulness":0.9199999999999999,"tests":0.6,"health":0.75,"branding":0.15},"popularity":{"communityInterest":32,"downloadsCount":7362,"downloadsAcceleration":-43.31510654490106,"dependentsCount":0},"maintenance":{"releasesFrequency":0.9,"commitsFrequency":0.9,"openIssues":1,"issuesDistribution":0.9}},"score":{"final":0.6551186165047964,"detail":{"quality":0.9140039952046713,"popularity":0.08838555126804953,"maintenance":0.9999499285702218}}}