UNPKG

string-punctuation-tokenizer

Version:

Small library that provides functions to tokenize a string into an array of words with or without punctuation

41 lines 601 B
{ "extends": [ "eslint:recommended", "google" ], "plugins": [ "jest" ], "settings": { }, "rules": { "quotes": "off", "semi": [ "error", "always", { "omitLastInOneLineBlock": true } ], "no-console": "off", "max-len": [ "error", { "ignoreStrings": true, "ignoreComments": true } ] }, "parser": "babel-eslint", "parserOptions": { "ecmaFeatures": { "modules": true } }, "env": { "browser": true, "node": true, "es6": true, "jest/globals": true } }