The Wayback Machine - https://web.archive.org/web/20220324181157/https://github.com/topics/linting
Skip to content
#

linting

Here are 544 public repositories matching this topic...

spectral
jonaslagoni
jonaslagoni commented Mar 17, 2022

User story.
As a user, I can detect if my document has orphaned channels inside components.

Describe the solution you'd like
This should be a valid AsyncAPI file:

{
  asyncapi: '2.3.0',
  channels: {
    'users/signedUp': {
      $ref: '#/components/channels
    },
  },
  components: {
    channels: {
      userSignedUp: {
        subscribe: {
          message: {
  
good first issue AsyncAPI
cfn_nag
MikeRalphson
MikeRalphson commented Jan 19, 2019
  • Guidance on adding a linter new rule-action (if none of the existing ones can perform the action, or be extended)
  • Expand on guidelines re: keeping commits to logical areas of the code / individual packages where possible
  • Use of conventional-commit standard going forward
  • Advice not to include any package-lock.json changes PRs, for security reasons. File will be regene
secretlint
azu
azu commented Jun 3, 2021

We want to add documents that run secretlint only on changed files on Pull Request.

name: Secretlint
on: [pull_request]

# secretlint + git diff on Pull Request
# https://github.com/secretlint/secretlint

jobs:
  test:
    name: "Secretlint"
    runs-on: ubuntu-18.04
    steps:
      - name: checkout
        uses: actions/checkout@v2
      - uses: technote-space/get-diff-a
good first issue Type: Documentation

Improve this page

Add a description, image, and links to the linting topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the linting topic, visit your repo's landing page and select "manage topics."

Learn more