Skip to content

Commit

Permalink
eslint: Align ci with config
Browse files Browse the repository at this point in the history
  • Loading branch information
u5r0 committed Dec 4, 2023
1 parent bf291dc commit 965fc3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-front.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
- name: Front / Install Dependencies
run: cd front && yarn
- name: Front / Run linter
run: cd front && yarn lint --config .eslintrc-ci.js
run: cd front && yarn lint --config .eslintrc-ci.cjs
front-jest:
needs: front-yarn-install
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions front/.eslintrc-ci.js → front/.eslintrc-ci.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default {
module.exports = {
overrides: [
{
files: ['*.stories.tsx', '*.test.ts'],
Expand All @@ -8,7 +8,7 @@ export default {
},
],
extends: [
'./.eslintrc.js'
'./.eslintrc.cjs'
],
rules: {
'no-console': 'error',
Expand Down

0 comments on commit 965fc3c

Please sign in to comment.