├── .github ├── FUNDING.yml └── workflows │ └── test.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── .yarn └── releases │ └── yarn-3.1.1.cjs ├── .yarnrc.yml ├── README.md ├── jest.config.ts ├── package.json ├── src ├── index.ts └── rules │ ├── node-server-imports │ ├── errors.ts │ ├── index.ts │ ├── readme.md │ └── spec.png │ └── use-loader-data-types │ └── index.ts ├── test ├── node-server-imports.test.ts ├── rule-tester.ts └── use-loader-data-types.test.ts ├── tsconfig.json └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .next 2 | dist 3 | build 4 | out 5 | node_modules 6 | .yarn 7 | .git 8 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.1.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/.yarn/releases/yarn-3.1.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/rules/node-server-imports/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/src/rules/node-server-imports/errors.ts -------------------------------------------------------------------------------- /src/rules/node-server-imports/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/src/rules/node-server-imports/index.ts -------------------------------------------------------------------------------- /src/rules/node-server-imports/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/src/rules/node-server-imports/readme.md -------------------------------------------------------------------------------- /src/rules/node-server-imports/spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/src/rules/node-server-imports/spec.png -------------------------------------------------------------------------------- /src/rules/use-loader-data-types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/src/rules/use-loader-data-types/index.ts -------------------------------------------------------------------------------- /test/node-server-imports.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/test/node-server-imports.test.ts -------------------------------------------------------------------------------- /test/rule-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/test/rule-tester.ts -------------------------------------------------------------------------------- /test/use-loader-data-types.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/test/use-loader-data-types.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/eslint-plugin-remix/HEAD/yarn.lock --------------------------------------------------------------------------------