├── .github └── workflows │ └── test.js.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── index.js ├── index.test.js ├── license ├── package.json └── readme.md /.github/workflows/test.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyshpadyrev/eslint-plugin-beautiful-imports/HEAD/.github/workflows/test.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyshpadyrev/eslint-plugin-beautiful-imports/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyshpadyrev/eslint-plugin-beautiful-imports/HEAD/.prettierrc -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyshpadyrev/eslint-plugin-beautiful-imports/HEAD/index.js -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyshpadyrev/eslint-plugin-beautiful-imports/HEAD/index.test.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyshpadyrev/eslint-plugin-beautiful-imports/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyshpadyrev/eslint-plugin-beautiful-imports/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyshpadyrev/eslint-plugin-beautiful-imports/HEAD/readme.md --------------------------------------------------------------------------------