├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── demo-fix.png ├── demo.png ├── dont-open-this.gif ├── package.json ├── src ├── index.js └── rules │ ├── index.js │ └── tell-me-why.js ├── tests └── lib │ └── rules │ └── tell-me-why.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleturner/eslint-plugin-why/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleturner/eslint-plugin-why/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleturner/eslint-plugin-why/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleturner/eslint-plugin-why/HEAD/README.md -------------------------------------------------------------------------------- /demo-fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleturner/eslint-plugin-why/HEAD/demo-fix.png -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleturner/eslint-plugin-why/HEAD/demo.png -------------------------------------------------------------------------------- /dont-open-this.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleturner/eslint-plugin-why/HEAD/dont-open-this.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleturner/eslint-plugin-why/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleturner/eslint-plugin-why/HEAD/src/index.js -------------------------------------------------------------------------------- /src/rules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleturner/eslint-plugin-why/HEAD/src/rules/index.js -------------------------------------------------------------------------------- /src/rules/tell-me-why.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleturner/eslint-plugin-why/HEAD/src/rules/tell-me-why.js -------------------------------------------------------------------------------- /tests/lib/rules/tell-me-why.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleturner/eslint-plugin-why/HEAD/tests/lib/rules/tell-me-why.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleturner/eslint-plugin-why/HEAD/yarn.lock --------------------------------------------------------------------------------