├── .editorconfig ├── .eslintignore ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── lib ├── copyright-header.txt └── index.js ├── package.json ├── scripts ├── build-core.js └── node-tests.js └── tests ├── qunit.config.js ├── tests.name.js ├── tests.params.js ├── tests.return.js ├── tests.this.js ├── tests.trivial.js └── tests.where.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | README.md 2 | node_modules/ 3 | dist/ 4 | coverage/ 5 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/README.md -------------------------------------------------------------------------------- /lib/copyright-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/lib/copyright-header.txt -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/scripts/build-core.js -------------------------------------------------------------------------------- /scripts/node-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/scripts/node-tests.js -------------------------------------------------------------------------------- /tests/qunit.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/tests/qunit.config.js -------------------------------------------------------------------------------- /tests/tests.name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/tests/tests.name.js -------------------------------------------------------------------------------- /tests/tests.params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/tests/tests.params.js -------------------------------------------------------------------------------- /tests/tests.return.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/tests/tests.return.js -------------------------------------------------------------------------------- /tests/tests.this.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/tests/tests.this.js -------------------------------------------------------------------------------- /tests/tests.trivial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/tests/tests.trivial.js -------------------------------------------------------------------------------- /tests/tests.where.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/eslint-plugin-proper-arrows/HEAD/tests/tests.where.js --------------------------------------------------------------------------------