{"id":23256661,"url":"https://github.com/aliatech/eslint-config-aliatech","last_synced_at":"2026-05-17T00:02:37.519Z","repository":{"id":57096537,"uuid":"174239564","full_name":"aliatech/eslint-config-aliatech","owner":"aliatech","description":"ESLint shareable config for Node code style of ALIA Technologies","archived":false,"fork":false,"pushed_at":"2019-03-10T21:06:08.000Z","size":84,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-12T11:17:53.823Z","etag":null,"topics":["aliatech","code-style","es6","eslint","hint","lint","quality"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aliatech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-03-07T00:00:43.000Z","updated_at":"2023-10-04T14:40:52.000Z","dependencies_parsed_at":"2022-08-20T16:10:46.367Z","dependency_job_id":null,"html_url":"https://github.com/aliatech/eslint-config-aliatech","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aliatech%2Feslint-config-aliatech","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aliatech%2Feslint-config-aliatech/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aliatech%2Feslint-config-aliatech/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aliatech%2Feslint-config-aliatech/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aliatech","download_url":"https://codeload.github.com/aliatech/eslint-config-aliatech/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247432197,"owners_count":20938109,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["aliatech","code-style","es6","eslint","hint","lint","quality"],"created_at":"2024-12-19T12:18:36.385Z","updated_at":"2025-11-04T03:03:51.721Z","avatar_url":"https://github.com/aliatech.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# eslint-config-aliatech\n\n[![Build Status](https://travis-ci.org/aliatech/eslint-config-aliatech.svg?branch=master)](https://travis-ci.org/aliatech/eslint-config-aliatech)\n[![npm version](https://img.shields.io/npm/v/@aliatech/eslint-config-aliatech.svg?color=blue)](https://www.npmjs.com/package/@aliatech/eslint-config-aliatech)\n\n\u003e ESLint [shareable config](http://eslint.org/docs/developer-guide/shareable-configs.html) for\n[ALIA Technologies](http://alialabs.com \"Go to ALIA Technologies' website\") NodeJS code style (ES2015+ version)\n\n## How to install\n\nInstall the package through NPM\n\n```bash\nnpm i -D eslint @aliatech/eslint-config-aliatech\n```\n\nInstall the package through Yarn\n\n```bash\nyarn add --prod eslint @aliatech/eslint-config-aliatech\n```\n\n## Usage\n\nOnce the `eslint-config-aliatech` package is installed, you can use it by specifying `aliatech/env-node`\nin the [`extends`](http://eslint.org/docs/user-guide/configuring#extending-configuration-files) section\nof your [ESLint configuration](http://eslint.org/docs/user-guide/configuring).\n\n```js\n{\n  \"extends\": \"@aliatech/aliatech/env-node\",\n  \"rules\": {\n    // Additional, per-project rules...\n  }\n}\n```\n\nDetermine which environment you wish to target. This package includes the following ones:\n\n| Target Environment   | Description                                   |\n| :------------------- | :-------------------------------------------- |\n| `aliatech`           | General JavaScript (ES6, ES2016, and ES2017)  |\n| `aliatech/env-node`  | Node.js support (extends `aliatech`)          |\n| `aliatech/env-mocha` | Mocha support (extends `aliatech`)            |\n\n### Extensions\n\nThis package also includes rules for the [`eslint-plugin-jsdoc`](https://github.com/gajus/eslint-plugin-jsdoc).\nIf you want to lint jsdoc comments:\n\n1. Install the plugin [`eslint-plugin-jsdoc`](https://github.com/gajus/eslint-plugin-jsdoc)\n2. Add `@aliatech/aliatech/add-jsdoc` to your `extends` key.\n\n```bash\nnpm i -D eslint-plugin-jsdoc\n```\n\n```js\n{\n  \"extends\": [\n    \"@aliatech/aliatech/env-node\",\n    \"@aliatech/aliatech/add-jsdoc\"\n  ],\n  \"rules\": {\n    // Additional, per-project rules...\n  }\n}\n```\n\nIt's recommended that your project have a `.eslintignore` file in the root of your project. Add all\ndirectories and file patterns you wish to ignore. At the the very least, you should ignore the\n`node_modules` directory:\n\n```\n# .eslintignore\n\nnode_modules\n```\n\n## NPM Scripts\n\nAdd a `lint` and `test` scripts to the `package.json`.   \n\n```json\n{\n  \"scripts\": {\n    \"lint\": \"eslint --config aliatech/env-node src\",\n    \"test\": \"eslint --config aliatech/env-mocha test \u0026\u0026 mocha\"\n  }\n}\n```\n\nThen run:\n\n```bash\nnpm run lint\n```\n\n# Testing\n\nInstall develop dependences\n\n```bash\nnpm i -D # If you use NPM\nyarn install # If you use Yarn\n```\n\nExecute tests\n\n```bash\nnpm test\n```\n\n# Credits\n\nDeveloped by\n[Juan Costa](https://github.com/Akeri \"Github's profile\")\nfor [ALIA Technologies](https://github.com/aliatech \"Github's profile\")\n\n\n[\u003cimg src=\"http://alialabs.com/images/logos/logo-full-big.png\" alt=\"ALIA Technologies\" height=100/\u003e](http://alialabs.com \"Go to ALIA Technologies' website\")\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faliatech%2Feslint-config-aliatech","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faliatech%2Feslint-config-aliatech","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faliatech%2Feslint-config-aliatech/lists"}