-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): integrates further package linting (#3546)
Integrates work from #3545 into CI. Also, while I was there I did a few nitty cleanup things: - made 99.9% of arrays a uses linewise YAML arrays consistently (i.e. `-` vs `[]`) - consistently moved `concurrency:` to the same places in all workflows - changed the name of the `main.yml` workflow to `main` (the name is used for cross-referencing in another workflow). It seemed to me to be a good idea to keep the name of the workflow the same as the name of the file. - ...possibly another couple of teensy tiny nitty things. Signed-off-by: John Cowen <[email protected]>
- Loading branch information
Showing
6 changed files
with
60 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** @typedef {import('eslint').Linter.Config[]} Config */ | ||
|
||
const { eslint } = require('@kumahq/config') | ||
|
||
const config = [ | ||
...eslint(), | ||
{ | ||
'ignores': ['index.d.ts'], | ||
}, | ||
] | ||
|
||
module.exports = config |