Skip to content

Commit

Permalink
Again (DO NOT MERGE)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-carter-at-sf committed Dec 13, 2023
1 parent aceff63 commit a4f1332
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
13 changes: 7 additions & 6 deletions .eslintrc.json → .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
{
"parser": "@typescript-eslint/parser",
"extends": [
module.exports = {
parser: "@typescript-eslint/parser",
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:sf-plugin/migration"
],
"parserOptions": {
parserOptions: {
"sourceType": "module",
"ecmaVersion": 2018,
"project": "./tsconfig.json"
"project": "./tsconfig.json",
"tsconfigRootDir": __dirname
},
"plugins": [
plugins: [
"@typescript-eslint"
]
}
1 change: 1 addition & 0 deletions .github/workflows/gha-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
with:
node-version: 'lts/*' # Always use Node LTS for building dependencies.
- run: yarn
- run: find node_modules/*
- uses: rmohan20/code-analyzer-action@main
with:
render-results: true
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "./node_modules/@salesforce/dev-config/tsconfig",
"extends": "./node_modules/@salesforce/dev-config/tsconfig.json",
"compilerOptions": {
"outDir": "./lib",
"rootDir": "./src",
Expand All @@ -8,6 +8,7 @@
"emitDecoratorMetadata": true
},
"include": [
"./src/**/*"
"./src/**/*",
"./node_modules/@salesforce/dev-config/tsconfig.json"
]
}

0 comments on commit a4f1332

Please sign in to comment.