Skip to content

Commit 5819fbc

Browse files
committed
Merge branch 'dark-mode-marks'
2 parents 4624077 + fea47a9 commit 5819fbc

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
packages/web/CHANGELOG.md

.prettierrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
"semi": true,
44
"singleQuote": true,
55
"printWidth": 160,
6-
"arrowParens": "avoid"
6+
"arrowParens": "avoid",
7+
"ignore": ["packages/web/CHANGELOG.md"]
78
}

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default [
1919
litPluginConfigs['flat/recommended'],
2020
wcPluginConfigs['flat/recommended'],
2121
{
22-
ignores: ['dist/'],
22+
ignores: ['dist/', '*.config.mjs', '**/*.d.ts', 'web/node_modules/', '**/dist/'],
2323
},
2424
...compat.extends('eslint:recommended', 'plugin:@typescript-eslint/eslint-recommended', 'plugin:@typescript-eslint/recommended'),
2525
{

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@
5555
"start:build": "web-dev-server --root-dir packages/leavittbook/dist --app-index index.html --open --compatibility none --port 9090",
5656
"nuke": "git clean -fdx && rm -f package-lock.json",
5757
"lint:eslint": "eslint --ext .ts . --ignore-path .gitignore",
58-
"lint": "prettier . --check && eslint \"**/*.ts\" --ignore-pattern \"**/*.d.ts\" && lit-analyzer \"**/*.ts\" && tsc --noEmit",
59-
"lint-fix": "prettier . --write && eslint \"**/*.ts\" --ignore-pattern \"**/*.d.ts\" --fix",
58+
"lint": "prettier . --check && eslint \"**/*.ts\" & lit-analyzer \"**/*.ts\" && tsc --noEmit",
59+
"lint-fix": "prettier . --write && eslint \"**/*.ts\" --fix",
6060
"lerna:publish": "npm run build && npm run stash && lerna publish --conventional-commits --yes",
6161
"lerna:publish-force": "npm run build && lerna publish --conventional-commits --yes --force-publish=*",
6262
"test:publish": "npm run build && lerna version --no-push --yes",

0 commit comments

Comments
 (0)