Skip to content

Commit

Permalink
Remove dependencies on upstream fork (patch)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukiffer committed Apr 15, 2024
1 parent c7f942f commit b21e291
Show file tree
Hide file tree
Showing 8 changed files with 2,374 additions and 3,579 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @cncsc/conventions-reviewers @cncsc/devops-reviewers @cncsc/application-reviewers
* @lukiffer
2 changes: 1 addition & 1 deletion .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
on-success:
name: Semantic Release
uses: cncsc/actions/.github/workflows/semantic-release.yaml@main
uses: fcgroup/actions/.github/workflows/semantic-release.yaml@main
secrets:
GIT_TOKEN_BASIC: ${{ secrets.GIT_TOKEN_BASIC }}
NPM_ACCESS_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ on:
jobs:
ci:
name: Validation
uses: cncsc/actions/.github/workflows/validation.yaml@main
uses: fcgroup/actions/.github/workflows/validation.yaml@main
2 changes: 1 addition & 1 deletion .releaserc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "@cncsc/semantic-release-config/npm"
"extends": "@bdrk/semantic-release-config/npm"
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2022 Armor Defense Inc.
Copyright 2022 Fritz Consulting Group, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
# ESLint Shareable Configs

This repository contains the standard ESLint shareable configuration for CNCSC projects.
This repository contains the standard ESLint shareable configuration for Bedrock projects.

## Referencing this Configuration

You can reference this config by installing the NPM package in your project:

```bash
npm install --save-dev @cncsc/eslint-config
npm install --save-dev @bdrk/eslint-config
```

Then update the project's `.eslintrc.json` file to extend this configuration:

**For JavaScript projects:**
```json
{
"extends": "@cncsc/eslint-config"
"extends": "@bdrk/eslint-config"
}
```

**For TypeScript projects:**
```json
{
"extends": "@cncsc/eslint-config/typescript"
"extends": "@bdrk/eslint-config/typescript"
}
```

Expand Down
Loading

0 comments on commit b21e291

Please sign in to comment.