├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── bower.json ├── package.json ├── raw ├── bbalet_stopwords_ro.txt ├── geonetwork-rum.txt ├── gh-stopwords-json-ro.txt ├── ranksnl-romanian.txt ├── stcomma.txt └── stopwords-filter-ro.txt ├── stopwords-ro.json └── stopwords-ro.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .dropbox 3 | .DS_Store 4 | Icon? 5 | Thumbs.db 6 | 7 | *.log 8 | node_modules 9 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | .idea 3 | raw 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-ro/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-ro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-ro/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-ro/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-ro/HEAD/package.json -------------------------------------------------------------------------------- /raw/bbalet_stopwords_ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-ro/HEAD/raw/bbalet_stopwords_ro.txt -------------------------------------------------------------------------------- /raw/geonetwork-rum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-ro/HEAD/raw/geonetwork-rum.txt -------------------------------------------------------------------------------- /raw/gh-stopwords-json-ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-ro/HEAD/raw/gh-stopwords-json-ro.txt -------------------------------------------------------------------------------- /raw/ranksnl-romanian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-ro/HEAD/raw/ranksnl-romanian.txt -------------------------------------------------------------------------------- /raw/stcomma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-ro/HEAD/raw/stcomma.txt -------------------------------------------------------------------------------- /raw/stopwords-filter-ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-ro/HEAD/raw/stopwords-filter-ro.txt -------------------------------------------------------------------------------- /stopwords-ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-ro/HEAD/stopwords-ro.json -------------------------------------------------------------------------------- /stopwords-ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-ro/HEAD/stopwords-ro.txt --------------------------------------------------------------------------------