├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── index.js ├── license ├── package.json ├── readme.md └── test └── fixtures ├── .eslintrc.js └── jquery.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/eslint-config-jquery/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/eslint-config-jquery/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/eslint-config-jquery/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/eslint-config-jquery/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/eslint-config-jquery/HEAD/.gitignore -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/eslint-config-jquery/HEAD/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/eslint-config-jquery/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/eslint-config-jquery/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/eslint-config-jquery/HEAD/readme.md -------------------------------------------------------------------------------- /test/fixtures/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/eslint-config-jquery/HEAD/test/fixtures/.eslintrc.js -------------------------------------------------------------------------------- /test/fixtures/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/eslint-config-jquery/HEAD/test/fixtures/jquery.js --------------------------------------------------------------------------------