Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
"node": true,
"browser": true,
"es2021": true,
"jest": true,
"webextensions": true
"jest": true
},
"extends": [
"eslint:recommended",
Expand All @@ -25,11 +24,15 @@
"version": "detect"
}
},
"globals": {
"chrome": "readonly"
},
"ignorePatterns": ["dist"],
"rules": {
"indent": ["error", 2],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"jsx-quotes": ["error", "prefer-single"]
"jsx-quotes": ["error", "prefer-single"],
"no-console": "warn"
}
}
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
node-version: 22
- name: Install dependencies
run: npm ci --force
run: npm ci
- name: Build for development
run: npm run build --if-present
- name: Run Test
Expand All @@ -36,7 +36,7 @@ jobs:
node-version: 22
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm ci --force
run: npm ci
- name: Build for production
run: npm run production --if-present
- name: Run Test
Expand Down
Loading
Loading