├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib └── index.js ├── package.json └── spec ├── .eslintrc.js ├── fixtures ├── bad.txt └── good.txt └── linter-proselint-spec.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-proselint/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-proselint/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-proselint/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | .github_changelog_generator 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-proselint/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-proselint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-proselint/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-proselint/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-proselint/HEAD/package.json -------------------------------------------------------------------------------- /spec/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-proselint/HEAD/spec/.eslintrc.js -------------------------------------------------------------------------------- /spec/fixtures/bad.txt: -------------------------------------------------------------------------------- 1 | John is unique lol. 2 | -------------------------------------------------------------------------------- /spec/fixtures/good.txt: -------------------------------------------------------------------------------- 1 | John and Jill went up the hill. 2 | -------------------------------------------------------------------------------- /spec/linter-proselint-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtomLinter/linter-proselint/HEAD/spec/linter-proselint-spec.js --------------------------------------------------------------------------------