{"id":21606154,"url":"https://github.com/evaneos/front-config","last_synced_at":"2026-02-18T16:01:08.112Z","repository":{"id":40304125,"uuid":"491016794","full_name":"Evaneos/front-config","owner":"Evaneos","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-04T12:41:12.000Z","size":865,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-09-04T14:35:39.226Z","etag":null,"topics":["library"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Evaneos.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-05-11T08:12:59.000Z","updated_at":"2025-07-15T12:55:54.000Z","dependencies_parsed_at":"2023-02-18T16:25:15.447Z","dependency_job_id":"59a136f4-3a41-4c84-bbcd-20997daeecb5","html_url":"https://github.com/Evaneos/front-config","commit_stats":null,"previous_names":["evaneos/eslint-config"],"tags_count":28,"template":false,"template_full_name":null,"purl":"pkg:github/Evaneos/front-config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Evaneos%2Ffront-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Evaneos%2Ffront-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Evaneos%2Ffront-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Evaneos%2Ffront-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Evaneos","download_url":"https://codeload.github.com/Evaneos/front-config/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Evaneos%2Ffront-config/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29585441,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T13:56:48.962Z","status":"ssl_error","status_checked_at":"2026-02-18T13:54:34.145Z","response_time":162,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["library"],"created_at":"2024-11-24T20:19:29.283Z","updated_at":"2026-02-18T16:01:08.106Z","avatar_url":"https://github.com/Evaneos.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# @evaneos/front-config\n\n@evaneos/front-config is the main resource for shared js/ts/tsx linting and config across Evaneos apps.\n\n## Install\n\n```shell\nnpm install @evaneos/front-config@latest\n```\n\n# Install\n\n## Eslint flat config\n\nIn your `eslint.config.(c|m)js` file, add:\n\n```cjs\nconst evaneosConfig = require('@evaneos/front-config/eslint/index.js');\nmodule.exports = [...evaneosConfig];\n```\n\n```mjs\nimport evaneosConfig from '@evaneos/front-config/eslint/index.mjs';\nexport default [...evaneosConfig];\n```\n\nYou may want to turn off the new rules, here is an example from rm\n\n```\nimport globals from 'globals';\nimport evaneosConfig from '@evaneos/front-config/eslint/index.mjs';\n\nexport default [\n    ...evaneosConfig,\n    {\n        files: ['**/*.ts', '**/*.tsx'],\n        rules: {\n            '@typescript-eslint/ban-ts-comment': 'off',\n            '@typescript-eslint/no-unsafe-assignment': 'off',\n            '@typescript-eslint/no-unsafe-member-access': 'off',\n            '@typescript-eslint/no-unsafe-argument': 'off',\n            '@typescript-eslint/no-unsafe-return': 'off',\n            '@typescript-eslint/no-unsafe-call': 'off',\n            '@typescript-eslint/no-duplicate-type-constituents': 'off',\n            '@typescript-eslint/no-unnecessary-type-assertion': 'off',\n            '@typescript-eslint/no-unused-expressions': 'off',\n            '@typescript-eslint/unbound-method': 'off',\n            '@typescript-eslint/no-unsafe-enum-comparison': 'off',\n            '@typescript-eslint/only-throw-error': 'off',\n            '@typescript-eslint/no-redundant-type-constituents': 'off',\n            '@typescript-eslint/await-thenable': 'off',\n            '@typescript-eslint/require-await': 'off',\n            'no-constant-binary-expression': 'off',\n            '@typescript-eslint/no-empty-function': 'off',\n            'jsx-a11y/alt-text': 'off',\n        },\n    },\n];\n\n```\n\nYou may want to lint some files differently, for example if its node or browser or test files, if so you can do like this:\n\n```\n\n{\n        files: [\n            'webpack.config.dev.js',\n            'webpack.config.prod.js',\n            'webpack.config.common.js',\n            '.jestrc.js',\n            '.prettierrc.js',\n            'babel.config.js',\n            'jest/mediaFileTransformer.js',\n            'jest/setup.js',\n        ],\n        rules: {\n            '@typescript-eslint/no-require-imports': 'off',\n        },\n        languageOptions: {\n            globals: {\n                ...globals.node,\n            },\n        },\n    },\n```\n\n## TSConfig\n\nIn your `tsconfig.json` file, add:\n\n```json\n{\n    \"extends\": \"@evaneos/front-config/config/tsconfig.json\"\n}\n```\n\n## Prettier\n\nIn your `.prettierrc.js` file add:\n\n```js\nmodule.exports = {\n    ...require('@evaneos/front-config/prettier/index.js'),\n};\n```\n\n# Development\n\n## Local Development Files\n\nThe following files at the repository root are **only for development experience within this repository** and are **not exported** as part of the package:\n\n- `tsconfig.json` - TypeScript configuration for developing this package\n- `eslint.config.ts` - ESLint configuration for linting this repository's source code\n- `.prettierrc.js` - Prettier configuration for formatting this repository's code\n\nThese files are not included in the published package and should not be used as examples for consuming projects.\n\n# Contribution\n\nContributing to this repo should be simple.\n\nIf you want to add a rule, plugin or anything, make a simple PR that does it, get it reviewed, merge it and then a release PR will automatically appear few minutes after.\nMake sure you follow standard commit.\nMerge it and it will automatically build and publish.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevaneos%2Ffront-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fevaneos%2Ffront-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevaneos%2Ffront-config/lists"}