diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 6e9552f..532b00e 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -29,6 +29,6 @@ jobs: registry-url: https://registry.npmjs.org/ scope: '@trilon' - run: yarn install --frozen-lockfile - - run: yarn npm publish + - run: yarn npm publish --access public env: NODE_AUTH_TOKEN: ${{secrets.npm_token}} diff --git a/README.md b/README.md index 106d67f..911cd36 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,23 @@ -# Trilon eslint-plugin +# Trilon ESLint Plugin + +[![Apache-2.0 license](https://img.shields.io/badge/license-Apache-blue.svg?style=for-the-badge&color=e51384)](/LICENSE) + + + + + +--- + +

+ + Trilon.io - Angular Universal, NestJS, JavaScript Application Consulting Development and Training + +

+ + +

Made with :heart: by Trilon.io

+ +--- [![Node.js CI](https://github.com/TrilonIO/eslint-plugin/actions/workflows/node-ci.yml/badge.svg)](https://github.com/TrilonIO/eslint-plugin/actions/workflows/node-ci.yml) @@ -6,12 +25,10 @@ At Trilon, our goal is to help elevate teams - giving them the push they need to As part of that, we focus on developing tools that make **your** dev experience easier, enjoyable, and safer. -The official Trilon Eslint Plugin is part of that toolbelt to help your team to thrive, applying best practices for NestJS, curated by our key contributors and core team. +The official Trilon ESLint Plugin is part of that toolbelt to help your team to thrive, applying best practices for NestJS, curated by our key contributors and core team. ## Installation -> Once this package gets published - ```sh npm install @trilon/eslint-plugin ``` @@ -33,3 +50,23 @@ The "recommended" preset contains the rules listed below. If you need custom con | ------------------------------------------------------------------------------------ | -------------------------------------------------------------- | ----------- | | [`@trilon/enforce-close-testing-module`](docs/rules/enforce-close-testing-module.md) | Ensures NestJS testing modules are closed properly after tests | ✅ | | [`@trilon/check-inject-decorator`](docs/rules/check-inject-decorator.md) | Detects incorrect usage of `@Inject(TOKEN)` decorator | ✅ | + +--- + +# Trilon Consulting + +## JavaScript, Node, NestJS Consulting from Open-Source Fanatics and Key Contributors! + +Check out **[Trilon.io](https://Trilon.io)** for more info! + +Contact us at , and let's talk about your projects needs. + +

+ +

+ + Trilon.io - Angular Universal, NestJS, JavaScript Application Consulting Development and Training + +

+ +

Made with :heart: by Trilon.io

\ No newline at end of file diff --git a/src/index.ts b/src/index.ts index f1987b1..da32574 100644 --- a/src/index.ts +++ b/src/index.ts @@ -16,4 +16,5 @@ const plugin = { }, }; +// @ts-expect-error Still have to investigate why this is failing module.exports = plugin;