├── .github └── workflows │ └── publish-release.yaml ├── .gitignore ├── .release-please-manifest.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── configs ├── codely-course.js ├── codely-full.js ├── codely-js.js └── codely-ts.js ├── eslint.config.js ├── index.js ├── package.json └── release-please-config.json /.github/workflows/publish-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/eslint-config-codely/HEAD/.github/workflows/publish-release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "4.5.0" 3 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/eslint-config-codely/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | * https://eslint.org/docs/latest/extend/shareable-configs 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/eslint-config-codely/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/eslint-config-codely/HEAD/README.md -------------------------------------------------------------------------------- /configs/codely-course.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/eslint-config-codely/HEAD/configs/codely-course.js -------------------------------------------------------------------------------- /configs/codely-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/eslint-config-codely/HEAD/configs/codely-full.js -------------------------------------------------------------------------------- /configs/codely-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/eslint-config-codely/HEAD/configs/codely-js.js -------------------------------------------------------------------------------- /configs/codely-ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/eslint-config-codely/HEAD/configs/codely-ts.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/eslint-config-codely/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/eslint-config-codely/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/eslint-config-codely/HEAD/package.json -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/eslint-config-codely/HEAD/release-please-config.json --------------------------------------------------------------------------------