├── .eslintrc ├── .github └── workflows │ ├── bump.yml │ ├── check.yml │ ├── e2e.yml │ └── publish.yml ├── .gitignore ├── .prettierrc ├── README.md ├── deployment.md ├── e2e.Dockerfile ├── e2eFixtures ├── badcss.txt ├── badfile.txt ├── e2e-test.ts ├── e2e.jest.config.js └── test-repo │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public │ └── vite.svg │ ├── src │ ├── App.css │ ├── App.tsx │ ├── assets │ │ └── react.svg │ ├── index.css │ ├── main.tsx │ ├── server │ │ └── index.ts │ └── vite-env.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── eslint.config.mjs ├── jest.config.js ├── lintier.gif ├── local-dev.md ├── package.json ├── src ├── getOptions │ ├── askQuestions.ts │ ├── getOptions.ts │ └── parseArgs.ts ├── index.ts ├── installDependencies │ ├── installDependencies.ts │ └── pinnedVersions.json ├── progressMessages.ts ├── successMessage.ts └── writeConfigs │ ├── basePrettierRc.ts │ ├── baseStylelintRc.ts │ ├── getEslintConfig.ts │ ├── getLintStagedConfig.ts │ ├── scripts.test.ts │ └── writeConfigs.ts ├── tsconfig.json └── updatePinnedVersions.ts /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/.github/workflows/bump.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/.github/workflows/e2e.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bin/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/README.md -------------------------------------------------------------------------------- /deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/deployment.md -------------------------------------------------------------------------------- /e2e.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2e.Dockerfile -------------------------------------------------------------------------------- /e2eFixtures/badcss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/badcss.txt -------------------------------------------------------------------------------- /e2eFixtures/badfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/badfile.txt -------------------------------------------------------------------------------- /e2eFixtures/e2e-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/e2e-test.ts -------------------------------------------------------------------------------- /e2eFixtures/e2e.jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/e2e.jest.config.js -------------------------------------------------------------------------------- /e2eFixtures/test-repo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/test-repo/.gitignore -------------------------------------------------------------------------------- /e2eFixtures/test-repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/test-repo/README.md -------------------------------------------------------------------------------- /e2eFixtures/test-repo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/test-repo/index.html -------------------------------------------------------------------------------- /e2eFixtures/test-repo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/test-repo/package.json -------------------------------------------------------------------------------- /e2eFixtures/test-repo/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/test-repo/public/vite.svg -------------------------------------------------------------------------------- /e2eFixtures/test-repo/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/test-repo/src/App.css -------------------------------------------------------------------------------- /e2eFixtures/test-repo/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/test-repo/src/App.tsx -------------------------------------------------------------------------------- /e2eFixtures/test-repo/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/test-repo/src/assets/react.svg -------------------------------------------------------------------------------- /e2eFixtures/test-repo/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/test-repo/src/index.css -------------------------------------------------------------------------------- /e2eFixtures/test-repo/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/test-repo/src/main.tsx -------------------------------------------------------------------------------- /e2eFixtures/test-repo/src/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/test-repo/src/server/index.ts -------------------------------------------------------------------------------- /e2eFixtures/test-repo/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /e2eFixtures/test-repo/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/test-repo/tsconfig.app.json -------------------------------------------------------------------------------- /e2eFixtures/test-repo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/test-repo/tsconfig.json -------------------------------------------------------------------------------- /e2eFixtures/test-repo/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/test-repo/tsconfig.node.json -------------------------------------------------------------------------------- /e2eFixtures/test-repo/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/e2eFixtures/test-repo/vite.config.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/jest.config.js -------------------------------------------------------------------------------- /lintier.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/lintier.gif -------------------------------------------------------------------------------- /local-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/local-dev.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/package.json -------------------------------------------------------------------------------- /src/getOptions/askQuestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/src/getOptions/askQuestions.ts -------------------------------------------------------------------------------- /src/getOptions/getOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/src/getOptions/getOptions.ts -------------------------------------------------------------------------------- /src/getOptions/parseArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/src/getOptions/parseArgs.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/installDependencies/installDependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/src/installDependencies/installDependencies.ts -------------------------------------------------------------------------------- /src/installDependencies/pinnedVersions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/src/installDependencies/pinnedVersions.json -------------------------------------------------------------------------------- /src/progressMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/src/progressMessages.ts -------------------------------------------------------------------------------- /src/successMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/src/successMessage.ts -------------------------------------------------------------------------------- /src/writeConfigs/basePrettierRc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/src/writeConfigs/basePrettierRc.ts -------------------------------------------------------------------------------- /src/writeConfigs/baseStylelintRc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/src/writeConfigs/baseStylelintRc.ts -------------------------------------------------------------------------------- /src/writeConfigs/getEslintConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/src/writeConfigs/getEslintConfig.ts -------------------------------------------------------------------------------- /src/writeConfigs/getLintStagedConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/src/writeConfigs/getLintStagedConfig.ts -------------------------------------------------------------------------------- /src/writeConfigs/scripts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/src/writeConfigs/scripts.test.ts -------------------------------------------------------------------------------- /src/writeConfigs/writeConfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/src/writeConfigs/writeConfigs.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/tsconfig.json -------------------------------------------------------------------------------- /updatePinnedVersions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-stillman/lintier/HEAD/updatePinnedVersions.ts --------------------------------------------------------------------------------