File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ jobs:
115
115
reporter : github-pr-review
116
116
filter_mode : diff_context
117
117
# eslint_flags: "components/*/stories/*.js"
118
- eslint_flags : " ${{ inputs.eslint_added_files }} ${{ inputs.eslint_modified_files }}"
118
+ eslint_flags : " --config ${{ github.workspace }}/.eslintrc ${{ inputs.eslint_added_files }} ${{ inputs.eslint_modified_files }}"
119
119
120
120
- name : Run markdownlint on documentation
121
121
uses : reviewdog/action-markdownlint@v0.26.2
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ module.exports = {
4
4
"prettier --no-error-on-unmatched-pattern --ignore-unknown --log-level silent --write --config .prettierrc" ,
5
5
] ,
6
6
"*.{js,json},!package.json" : [
7
- "eslint --fix --cache --no-error-on-unmatched-pattern"
7
+ "eslint --fix --cache --no-error-on-unmatched-pattern --config .eslintrc "
8
8
] ,
9
9
"*.{md,mdx}" : [
10
10
"prettier --no-error-on-unmatched-pattern --ignore-unknown --log-level silent --write --config .prettierrc" ,
@@ -13,7 +13,7 @@ module.exports = {
13
13
"package.json" : ( files ) => ( [
14
14
"yarn constraints --fix" ,
15
15
"yarn install --refresh-lockfile" ,
16
- `eslint --fix --cache --no-error-on-unmatched-pattern ${ files . join ( " " ) } ` ,
16
+ `eslint --fix --cache --no-error-on-unmatched-pattern --config .eslintrc ${ files . join ( " " ) } ` ,
17
17
"git add yarn.lock"
18
18
] ) ,
19
19
"dist/*.css" : [
You can’t perform that action at this time.
0 commit comments