├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── bower.json ├── package.json ├── raw ├── bbalet_stopwords_id.txt ├── gh-stopwords-json-id.txt ├── indonesian-stopwords-complete.txt └── ranksnl-indonesian.txt ├── stopwords-id.json └── stopwords-id.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-id/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-id/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-id/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-id/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-id/HEAD/package.json -------------------------------------------------------------------------------- /raw/bbalet_stopwords_id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-id/HEAD/raw/bbalet_stopwords_id.txt -------------------------------------------------------------------------------- /raw/gh-stopwords-json-id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-id/HEAD/raw/gh-stopwords-json-id.txt -------------------------------------------------------------------------------- /raw/indonesian-stopwords-complete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-id/HEAD/raw/indonesian-stopwords-complete.txt -------------------------------------------------------------------------------- /raw/ranksnl-indonesian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-id/HEAD/raw/ranksnl-indonesian.txt -------------------------------------------------------------------------------- /stopwords-id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-id/HEAD/stopwords-id.json -------------------------------------------------------------------------------- /stopwords-id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stopwords-iso/stopwords-id/HEAD/stopwords-id.txt --------------------------------------------------------------------------------