-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'renovate/thelabnyc-standards-0.x' into 'master'
chore(deps): update dependency @thelabnyc/standards to ^0.4.0 See merge request thelabnyc/accordance!32
- Loading branch information
Showing
9 changed files
with
650 additions
and
778 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,28 @@ | ||
import path from "node:path"; | ||
import { fileURLToPath } from "node:url"; | ||
|
||
import { getTSConfig } from "@thelabnyc/standards/eslint.mjs"; | ||
|
||
const __filename = fileURLToPath(import.meta.url); | ||
const __dirname = path.dirname(__filename); | ||
|
||
export default getTSConfig({ | ||
parserOptions: { | ||
projectService: { | ||
allowDefaultProject: ["*.js", "*.cjs", "*.mjs"], | ||
}, | ||
tsconfigRootDir: __dirname, | ||
}, | ||
configs: [ | ||
{ | ||
ignores: [ | ||
".cache/**/*", | ||
"*.js", | ||
"*.mjs", | ||
"**/*.js", | ||
"**/*.mjs", | ||
"!eslint.config.mjs", | ||
], | ||
}, | ||
], | ||
}); |
Oops, something went wrong.