├── .npmignore ├── .travis.yml ├── .gitignore ├── raw ├── ranksnl-ukrainian.txt └── new-words.txt ├── stopwords-uk.json ├── bower.json ├── stopwords-uk.txt ├── package.json ├── LICENSE └── README.md /.npmignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | .idea 3 | raw 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - "10" 5 | - "12" 6 | 7 | sudo: false 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .dropbox 3 | .DS_Store 4 | Icon? 5 | Thumbs.db 6 | 7 | *.log 8 | node_modules 9 | -------------------------------------------------------------------------------- /raw/ranksnl-ukrainian.txt: -------------------------------------------------------------------------------- 1 | з 2 | й 3 | що 4 | та 5 | Із 6 | але 7 | цей 8 | коли 9 | як 10 | чого 11 | хоча 12 | нам 13 | 14 | чи 15 | це 16 | 17 | про 18 | 19 | 20 | 21 | Інших 22 | ти 23 | вІн 24 | вона 25 | воно 26 | ми 27 | ви 28 | вони 29 | -------------------------------------------------------------------------------- /stopwords-uk.json: -------------------------------------------------------------------------------- 1 | ["авжеж","адже","але","б","без","був","була","були","було","бути","більш","вам","вас","весь","вздовж","ви","вниз","внизу","вона","вони","воно","все","всередині","всіх","від","він","да","давай","давати","де","дещо","для","до","з","завжди","замість","й","коли","ледве","майже","ми","навколо","навіть","нам","от","отже","отож","поза","про","під","та","так","такий","також","те","ти","тобто","тож","тощо","хоча","це","цей","чи","чого","що","як","який","якої","є","із","інших","їх","її"] -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "stopwords-uk", 3 | "description": "The most comprehensive collection of stopwords for the ukrainian language.", 4 | "keywords": [ 5 | "ukrainian", 6 | "stopwords", 7 | "stop words" 8 | ], 9 | "homepage": "https://github.com/stopwords-iso/stopwords-uk", 10 | "authors": [ 11 | "Gene Diaz " 12 | ], 13 | "license": "MIT", 14 | "main": "stopwords-uk.json", 15 | "ignore": [ 16 | "**/.*", 17 | "raw", 18 | "node_modules", 19 | "bower_components" 20 | ] 21 | } 22 | -------------------------------------------------------------------------------- /stopwords-uk.txt: -------------------------------------------------------------------------------- 1 | авжеж 2 | адже 3 | але 4 | б 5 | без 6 | був 7 | була 8 | були 9 | було 10 | бути 11 | більш 12 | вам 13 | вас 14 | весь 15 | вздовж 16 | ви 17 | вниз 18 | внизу 19 | вона 20 | вони 21 | воно 22 | все 23 | всередині 24 | всіх 25 | від 26 | він 27 | да 28 | давай 29 | давати 30 | де 31 | дещо 32 | для 33 | до 34 | з 35 | завжди 36 | замість 37 | й 38 | коли 39 | ледве 40 | майже 41 | ми 42 | навколо 43 | навіть 44 | нам 45 | от 46 | отже 47 | отож 48 | поза 49 | про 50 | під 51 | та 52 | так 53 | такий 54 | також 55 | те 56 | ти 57 | тобто 58 | тож 59 | тощо 60 | хоча 61 | це 62 | цей 63 | чи 64 | чого 65 | що 66 | як 67 | який 68 | якої 69 | є 70 | із 71 | інших 72 | їх 73 | її -------------------------------------------------------------------------------- /raw/new-words.txt: -------------------------------------------------------------------------------- 1 | авжеж 2 | адже 3 | але 4 | б 5 | без 6 | був 7 | була 8 | були 9 | було 10 | бути 11 | більш 12 | вам 13 | вас 14 | весь 15 | вздовж 16 | ви 17 | вниз 18 | внизу 19 | вона 20 | вони 21 | воно 22 | все 23 | всередині 24 | всіх 25 | від 26 | він 27 | да 28 | давай 29 | давати 30 | де 31 | дещо 32 | для 33 | до 34 | з 35 | завжди 36 | замість 37 | й 38 | коли 39 | ледве 40 | майже 41 | ми 42 | навколо 43 | навіть 44 | нам 45 | от 46 | отже 47 | отож 48 | поза 49 | про 50 | під 51 | та 52 | так 53 | такий 54 | також 55 | те 56 | ти 57 | тобто 58 | тож 59 | тощо 60 | хоча 61 | це 62 | цей 63 | чи 64 | чого 65 | що 66 | як 67 | який 68 | якої 69 | є 70 | із 71 | інших 72 | їх 73 | її 74 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "stopwords-uk", 3 | "version": "0.2.0", 4 | "author": "Gene Diaz (http://genediazjr.com)", 5 | "description": "The most comprehensive collection of stopwords for the ukrainian language.", 6 | "keywords": [ 7 | "ukrainian", 8 | "stopwords", 9 | "stop words" 10 | ], 11 | "license": "MIT", 12 | "repository": "git://github.com/stopwords-iso/stopwords-uk", 13 | "bugs": "https://github.com/stopwords-iso/stopwords-uk/issues", 14 | "main": "stopwords-uk.json", 15 | "engines": { 16 | "node": ">=0.10.0" 17 | }, 18 | "scripts": { 19 | "build": "stopwords-collator -s raw -o stopwords-uk", 20 | "test": "npm run build && jsonlint stopwords-uk.json -q" 21 | }, 22 | "devDependencies": { 23 | "stopwords-collator": "*", 24 | "jsonlint": "1.6.x" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Gene Diaz 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Stopwords Ukrainian (UK) 2 | ======= 3 | 4 | [![Build Status](https://travis-ci.org/stopwords-iso/stopwords-uk.svg?branch=master)](https://travis-ci.org/stopwords-iso/stopwords-uk) 5 | 6 | The most comprehensive collection of stopwords for the ukrainian language. 7 | 8 | A [multiple language](https://github.com/stopwords-iso/stopwords-iso) collection is also available. 9 | 10 | ### Usage 11 | 12 | The collection comes in a 13 | [JSON format](https://raw.githubusercontent.com/stopwords-iso/stopwords-uk/master/stopwords-uk.json) and a 14 | [text format](https://raw.githubusercontent.com/stopwords-iso/stopwords-uk/master/stopwords-uk.txt). 15 | You are free to use this collection any way you like. 16 | It is only currently published on [npm](https://www.npmjs.com/stopwords-uk) and [bower](https://bower.io). 17 | 18 | ```sh 19 | $ npm install stopwords-uk 20 | ``` 21 | 22 | ```sh 23 | $ bower install stopwords-uk 24 | ``` 25 | 26 | ```js 27 | // Node 28 | const stopwords = require('stopwords-uk'); // array of stopwords 29 | ``` 30 | 31 | ### Contributing 32 | 33 | If you wish to remove or update some of the stopwords, please file an issue first before sending a PR on the repo of the specific language. 34 | 35 | If you would like to add a stopword or a new set of stopwords, please add them as a new text file insie the `raw` directory then send a PR. 36 | 37 | Please send a separate PR on the [main repo](https://github.com/stopwords-iso/stopwords-iso) to credit the source of the added stopwords. 38 | 39 | ### Credits 40 | 41 | All stopwords sources are [listed on the main repo](https://github.com/stopwords-iso/stopwords-iso/blob/master/CREDITS.md). 42 | --------------------------------------------------------------------------------