Skip to content

Commit 9dcd111

Browse files
committed
build: Run lint check
1 parent aedf2a0 commit 9dcd111

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ module.exports = {
22
extends: ['airbnb'],
33
rules: {
44
'import/no-extraneous-dependencies': ['error', { devDependencies: ['*.config.js', '*.config.ts', '*.config.mjs'] }],
5+
'import/prefer-default-export': 'off',
56
},
67
};

.github/workflows/node.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
# Install dependencies
1616
- run: npm ci
1717

18+
# Lint check
19+
- run: npm run lint
20+
1821
# Build and output webpack stats to dist/webpack-stats.json
1922
- run: npm run build
2023

0 commit comments

Comments
 (0)