├── .eslintrc ├── .gitignore ├── .npmignore ├── .prettierrc ├── .travis.yml ├── LICENCE ├── README.md ├── package.json ├── src ├── index.js └── lib │ ├── rules │ ├── check-addtoset-updates.js │ ├── check-addtoset-updates.mocha.js │ ├── check-current-date-updates.js │ ├── check-current-date-updates.mocha.js │ ├── check-deprecated-calls.js │ ├── check-deprecated-calls.mocha.js │ ├── check-deprecated-updates.js │ ├── check-deprecated-updates.mocha.js │ ├── check-insert-calls.js │ ├── check-insert-calls.mocha.js │ ├── check-minmax-updates.js │ ├── check-minmax-updates.mocha.js │ ├── check-numeric-updates.js │ ├── check-numeric-updates.mocha.js │ ├── check-pop-updates.js │ ├── check-pop-updates.mocha.js │ ├── check-pull-updates.js │ ├── check-pull-updates.mocha.js │ ├── check-push-updates.js │ ├── check-push-updates.mocha.js │ ├── check-query-calls.js │ ├── check-query-calls.mocha.js │ ├── check-remove-calls.js │ ├── check-remove-calls.mocha.js │ ├── check-rename-updates.js │ ├── check-rename-updates.mocha.js │ ├── check-set-updates.js │ ├── check-set-updates.mocha.js │ ├── check-unset-updates.js │ ├── check-unset-updates.mocha.js │ ├── check-update-calls.js │ ├── check-update-calls.mocha.js │ ├── no-replace.js │ └── no-replace.mocha.js │ └── utils.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | node_modules/ 4 | test/results 5 | .git 6 | .coveralls.yml 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | node_modules/ 4 | .git 5 | .coveralls.yml 6 | tests/results 7 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/index.js -------------------------------------------------------------------------------- /src/lib/rules/check-addtoset-updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-addtoset-updates.js -------------------------------------------------------------------------------- /src/lib/rules/check-addtoset-updates.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-addtoset-updates.mocha.js -------------------------------------------------------------------------------- /src/lib/rules/check-current-date-updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-current-date-updates.js -------------------------------------------------------------------------------- /src/lib/rules/check-current-date-updates.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-current-date-updates.mocha.js -------------------------------------------------------------------------------- /src/lib/rules/check-deprecated-calls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-deprecated-calls.js -------------------------------------------------------------------------------- /src/lib/rules/check-deprecated-calls.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-deprecated-calls.mocha.js -------------------------------------------------------------------------------- /src/lib/rules/check-deprecated-updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-deprecated-updates.js -------------------------------------------------------------------------------- /src/lib/rules/check-deprecated-updates.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-deprecated-updates.mocha.js -------------------------------------------------------------------------------- /src/lib/rules/check-insert-calls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-insert-calls.js -------------------------------------------------------------------------------- /src/lib/rules/check-insert-calls.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-insert-calls.mocha.js -------------------------------------------------------------------------------- /src/lib/rules/check-minmax-updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-minmax-updates.js -------------------------------------------------------------------------------- /src/lib/rules/check-minmax-updates.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-minmax-updates.mocha.js -------------------------------------------------------------------------------- /src/lib/rules/check-numeric-updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-numeric-updates.js -------------------------------------------------------------------------------- /src/lib/rules/check-numeric-updates.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-numeric-updates.mocha.js -------------------------------------------------------------------------------- /src/lib/rules/check-pop-updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-pop-updates.js -------------------------------------------------------------------------------- /src/lib/rules/check-pop-updates.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-pop-updates.mocha.js -------------------------------------------------------------------------------- /src/lib/rules/check-pull-updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-pull-updates.js -------------------------------------------------------------------------------- /src/lib/rules/check-pull-updates.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-pull-updates.mocha.js -------------------------------------------------------------------------------- /src/lib/rules/check-push-updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-push-updates.js -------------------------------------------------------------------------------- /src/lib/rules/check-push-updates.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-push-updates.mocha.js -------------------------------------------------------------------------------- /src/lib/rules/check-query-calls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-query-calls.js -------------------------------------------------------------------------------- /src/lib/rules/check-query-calls.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-query-calls.mocha.js -------------------------------------------------------------------------------- /src/lib/rules/check-remove-calls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-remove-calls.js -------------------------------------------------------------------------------- /src/lib/rules/check-remove-calls.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-remove-calls.mocha.js -------------------------------------------------------------------------------- /src/lib/rules/check-rename-updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-rename-updates.js -------------------------------------------------------------------------------- /src/lib/rules/check-rename-updates.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-rename-updates.mocha.js -------------------------------------------------------------------------------- /src/lib/rules/check-set-updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-set-updates.js -------------------------------------------------------------------------------- /src/lib/rules/check-set-updates.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-set-updates.mocha.js -------------------------------------------------------------------------------- /src/lib/rules/check-unset-updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-unset-updates.js -------------------------------------------------------------------------------- /src/lib/rules/check-unset-updates.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-unset-updates.mocha.js -------------------------------------------------------------------------------- /src/lib/rules/check-update-calls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-update-calls.js -------------------------------------------------------------------------------- /src/lib/rules/check-update-calls.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/check-update-calls.mocha.js -------------------------------------------------------------------------------- /src/lib/rules/no-replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/no-replace.js -------------------------------------------------------------------------------- /src/lib/rules/no-replace.mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/rules/no-replace.mocha.js -------------------------------------------------------------------------------- /src/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/src/lib/utils.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastienElet/eslint-plugin-mongodb/HEAD/yarn.lock --------------------------------------------------------------------------------