Skip to content

Commit

Permalink
Add quotes to eslint file glob
Browse files Browse the repository at this point in the history
Allow LF or CRLF
  • Loading branch information
ryantrem committed Jul 29, 2024
1 parent f9e4903 commit 510aba7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"trailingComma": "es5",
"tabWidth": 4,
"printWidth": 180
"trailingComma": "es5",
"tabWidth": 4,
"printWidth": 180,
"endOfLine": "auto"
}
4 changes: 2 additions & 2 deletions packages/dev/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"test": "jest -c ../../../jest.config.ts",
"clean": "rimraf dist && rimraf tsconfig.build.tsbuildinfo",
"lint": "npm run lint:check",
"lint:check": "eslint src/**/*.{ts,tsx}",
"lint:fix": "eslint src/**/*.{ts,tsx} --fix",
"lint:check": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"precompile": "npm run compile:assets",
"compile": "npm run compile:source",
"compile:source": "tsc -b tsconfig.build.json",
Expand Down

0 comments on commit 510aba7

Please sign in to comment.