Skip to content

Commit

Permalink
added the missing wildcard
Browse files Browse the repository at this point in the history
  • Loading branch information
EmranMR committed Jan 27, 2025
1 parent e556b1c commit 786739a
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 39 deletions.
2 changes: 1 addition & 1 deletion src/api/json/catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -3682,7 +3682,7 @@
{
"name": "Nova Editor",
"description": "Nova Editor Extension Manifest",
"fileMatch": ["**/.novaextension/extension.json", "extension.json"],
"fileMatch": ["**/*.novaextension/extension.json", "extension.json"],
"url": "https://json.schemastore.org/extension.json"
},
{
Expand Down
16 changes: 8 additions & 8 deletions src/test/prettierrc/.prettierrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ tabWidth: 4
semi: false
singleQuote: true
overrides:
- files: '*.test.js'
options:
semi: true
- files:
- '*.html'
- 'legacy/**/*.js'
options:
tabWidth: 4
- files: '*.test.js'
options:
semi: true
- files:
- '*.html'
- 'legacy/**/*.js'
options:
tabWidth: 4
60 changes: 30 additions & 30 deletions src/test/prettierrc/prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
{
"arrowParens": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"overrides": [
{
"files": ["*/*.Rmd"],
"options": {
"parser": "markdown"
}
},
{
"files": ["*/*.type"],
"options": {
"parser": "custom"
}
}
],
"printWidth": 80,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
"arrowParens": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"overrides": [
{
"files": ["*/*.Rmd"],
"options": {
"parser": "markdown"
}
},
{
"files": ["*/*.type"],
"options": {
"parser": "custom"
}
}
],
"printWidth": 80,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
}

0 comments on commit 786739a

Please sign in to comment.