├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── dict └── web+db_press.yml ├── lib └── textlint-rule-web-plus-db.js ├── package.json └── test └── textlint-rule-web-plus-db-test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/textlint-rule-web-plus-db/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/textlint-rule-web-plus-db/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/textlint-rule-web-plus-db/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/textlint-rule-web-plus-db/HEAD/README.md -------------------------------------------------------------------------------- /dict/web+db_press.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/textlint-rule-web-plus-db/HEAD/dict/web+db_press.yml -------------------------------------------------------------------------------- /lib/textlint-rule-web-plus-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/textlint-rule-web-plus-db/HEAD/lib/textlint-rule-web-plus-db.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/textlint-rule-web-plus-db/HEAD/package.json -------------------------------------------------------------------------------- /test/textlint-rule-web-plus-db-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/textlint-rule-web-plus-db/HEAD/test/textlint-rule-web-plus-db-test.js --------------------------------------------------------------------------------