{"id":27326572,"url":"https://github.com/acdvs/eslint-plugin-suitescript","last_synced_at":"2025-04-12T11:58:52.321Z","repository":{"id":55089293,"uuid":"267432124","full_name":"acdvs/eslint-plugin-suitescript","owner":"acdvs","description":"ESLint plugin for NetSuite's SuiteScript v1/2 API.","archived":false,"fork":false,"pushed_at":"2024-11-29T13:08:23.000Z","size":204,"stargazers_count":20,"open_issues_count":7,"forks_count":7,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-03T12:58:55.472Z","etag":null,"topics":["amd","api","eslint","netsuite","oracle","plugin","suitescript","suitescript2"],"latest_commit_sha":null,"homepage":"","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/acdvs.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-05-27T21:41:48.000Z","updated_at":"2025-01-14T01:52:25.000Z","dependencies_parsed_at":"2023-02-14T19:01:20.964Z","dependency_job_id":"cf4d745d-ca86-4bf9-a99f-3418e682d13b","html_url":"https://github.com/acdvs/eslint-plugin-suitescript","commit_stats":{"total_commits":39,"total_committers":3,"mean_commits":13.0,"dds":0.4871794871794872,"last_synced_commit":"29699f8db364f7fda13e64cd33d1da6142ca2e2a"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acdvs%2Feslint-plugin-suitescript","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acdvs%2Feslint-plugin-suitescript/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acdvs%2Feslint-plugin-suitescript/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acdvs%2Feslint-plugin-suitescript/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/acdvs","download_url":"https://codeload.github.com/acdvs/eslint-plugin-suitescript/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248565085,"owners_count":21125415,"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":["amd","api","eslint","netsuite","oracle","plugin","suitescript","suitescript2"],"created_at":"2025-04-12T11:58:51.887Z","updated_at":"2025-04-12T11:58:52.312Z","avatar_url":"https://github.com/acdvs.png","language":"JavaScript","readme":"[![License][license-img]][license-link]\n[![npm][npm-img]][npm-link]\n[![CI][ci-img]][ci-link]\n\n# eslint-plugin-suitescript\n\nNetSuite SuiteScript v1/v2 linting rules for ESLint\n\n## Installation\n\nInstallation per project is highly recommended:\n\n```sh\n$ npm i -D eslint eslint-plugin-suitescript\n```\n\n## Configuration\n\nAdd \"suitescript\" to the plugins section of your ESLint config file.\n\n```json\n\"plugins\": [\"suitescript\"]\n```\n\nEnable the rules that you would like to use.\n\n```json\n\"rules\": {\n  \"suitescript/script-type\": \"error\",\n  \"suitescript/no-log-module\": \"error\",\n}\n```\n\nOr use a predefined setting for quick setup (choose one).\n\n```json\n// All available rules\n\"extends\": [\"plugin:suitescript/all\"]\n\n// Just the recommended rules\n\"extends\": [\"plugin:suitescript/recommended\"]\n```\n\n## List of supported rules\n\n- [suitescript/api-version](docs/rules/api-version.md): Enforces valid `@NApiVersion` tag values\n- [suitescript/entry-points](docs/rules/entry-points.md): Enforces inclusion of at least one entry point based on `@NScriptType`\n- [suitescript/log-args](docs/rules/log-args.md): Enforces correct log arguments\n- [suitescript/module-vars](docs/rules/module-vars.md): Enforces correct module identifiers for each configured module\n- [suitescript/no-amd-name](docs/rules/no-amd-name.md): Restricts naming of AMD modules\n- [suitescript/no-extra-modules](docs/rules/no-extra-modules.md): Enforces equal number of module literals and identifiers\n- [suitescript/no-invalid-modules](docs/rules/no-invalid-modules.md): Enforces valid SuiteScript modules in `define` array\n- [suitescript/no-log-module](docs/rules/no-log-module.md): Restricts loading of the N/log module in favor of global `log`\n- [suitescript/no-module-extensions](docs/rules/no-module-extensions.md): Restricts filename extensions on module dependencies\n- [suitescript/script-type](docs/rules/script-type.md): Enforces valid `@NScriptType` tag values\n\n## License\n\neslint-plugin-suitescript is licensed under the [MIT License](http://www.opensource.org/licenses/mit-license.php).\n\n[license-img]: https://img.shields.io/github/license/acdvs/eslint-plugin-suitescript\n[license-link]: https://github.com/acdvs/eslint-plugin-suitescript/blob/master/LICENSE\n[npm-img]: https://img.shields.io/npm/v/eslint-plugin-suitescript\n[npm-link]: https://www.npmjs.com/package/eslint-plugin-suitescript\n[ci-img]: https://github.com/acdvs/eslint-plugin-suitescript/workflows/CI/badge.svg\n[ci-link]: https://github.com/acdvs/eslint-plugin-suitescript/actions\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Facdvs%2Feslint-plugin-suitescript","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Facdvs%2Feslint-plugin-suitescript","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Facdvs%2Feslint-plugin-suitescript/lists"}