Skip to content

Commit

Permalink
Project update. [p][robotic]
Browse files Browse the repository at this point in the history
  • Loading branch information
jaswrks committed Oct 9, 2023
1 parent 552d11a commit 3fe9556
Show file tree
Hide file tree
Showing 13 changed files with 101 additions and 100 deletions.
2 changes: 1 addition & 1 deletion .browserslistrc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Generated data.
# <generated:start>

# Last generated Mon, Oct 9, 2023, 8:25:27 AM EDT.
# Last generated Mon, Oct 9, 2023, 8:56:44 AM EDT.

[production]
last 1 chrome versions
Expand Down
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Generated data.
# <generated:start>

# Last generated Mon, Oct 9, 2023, 8:25:27 AM EDT.
# Last generated Mon, Oct 9, 2023, 8:56:44 AM EDT.

# Locals

Expand Down
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Generated data.
# <generated:start>

# Last generated Mon, Oct 9, 2023, 8:25:27 AM EDT.
# Last generated Mon, Oct 9, 2023, 8:56:44 AM EDT.

# Default

Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Generated data.
# <generated:start>

# Last generated Mon, Oct 9, 2023, 8:25:27 AM EDT.
# Last generated Mon, Oct 9, 2023, 8:56:44 AM EDT.

# Locals

Expand Down
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# Generated data.
# <generated:start>

# Last generated Mon, Oct 9, 2023, 8:25:27 AM EDT.
# Last generated Mon, Oct 9, 2023, 8:56:44 AM EDT.

# Locals

Expand Down
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Generated data.
# <generated:start>

# Last generated Mon, Oct 9, 2023, 8:25:27 AM EDT.
# Last generated Mon, Oct 9, 2023, 8:56:44 AM EDT.

# Packages

Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @note This entire file will be updated automatically.
* @note Instead of editing here, please review `./settings.mjs`.
*
* Last generated using `./settings.mjs` Mon, Oct 9, 2023, 8:25:27 AM EDT.
* Last generated using `./settings.mjs` Mon, Oct 9, 2023, 8:56:44 AM EDT.
*/
{
"editor.formatOnType": false,
Expand Down
2 changes: 1 addition & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Generated data.
# <generated:start>

# Last generated Mon, Oct 9, 2023, 8:25:27 AM EDT.
# Last generated Mon, Oct 9, 2023, 8:56:44 AM EDT.

# Locals

Expand Down
15 changes: 8 additions & 7 deletions dev/.files/prettier/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ export default async () => {
*/
files: ['*.' + extensions.asBracedGlob([...extensions.byVSCodeLang.php])],
options: {
parser: 'php',
braceStyle: '1tbs',
parser: 'php',
phpVersion: '8.1',
trailingCommaPHP: true,
},
Expand Down Expand Up @@ -159,18 +159,18 @@ export default async () => {
*/
files: ['*.' + extensions.asBracedGlob([...extensions.byCanonical.sh])],
options: {
parser: 'sh', // Posix variant!
variant: 1, // Posix variant only.
binaryNextLine: false,
experimentalWasm: false,
functionNextLine: false,
indent: baseConfig.tabWidth,
keepComments: true,
keepPadding: false,
minify: false,
parser: 'sh',
spaceRedirects: true,
stopAt: undefined,
switchCaseIndent: true,
variant: 1, // Posix variant.
},
},
{
Expand All @@ -184,18 +184,18 @@ export default async () => {
'{,*.}Dockerfile', // Safe to assume ours always uses bash.
],
options: {
parser: 'sh', // Bash variant!
variant: 0, // Bash variant only.
binaryNextLine: false,
experimentalWasm: false,
functionNextLine: false,
indent: baseConfig.tabWidth,
keepComments: true,
keepPadding: false,
minify: false,
parser: 'sh',
spaceRedirects: true,
stopAt: undefined,
switchCaseIndent: true,
variant: 0, // Bash variant.
},
},

Expand Down Expand Up @@ -231,6 +231,7 @@ export default async () => {
options: {
jsdocAddDefaultToDescription: false,
jsdocCapitalizeDescription: true,
jsdocCommentLineStrategy: 'keep',
jsdocDescriptionTag: false,
jsdocDescriptionWithDot: true,
jsdocKeepUnParseAbleExampleIndent: false,
Expand Down Expand Up @@ -309,7 +310,6 @@ export default async () => {
*/
files: ['*.' + extensions.asBracedGlob([...extensions.byVSCodeLang.sql])],
options: {
parser: 'sql',
commaPosition: 'after',
database: 'mysql',
denseOperators: false,
Expand All @@ -323,6 +323,7 @@ export default async () => {
newlineBeforeSemicolon: false,
params: Object,
paramTypes: Object,
parser: 'sql',
tabulateAlias: false,
type: 'table',
},
Expand Down Expand Up @@ -397,9 +398,9 @@ export default async () => {
files: ['*.' + extensions.asBracedGlob([...extensions.byVSCodeLang.xml])],
options: {
parser: 'xml',
xmlQuoteAttributes: 'preserve',
xmlSelfClosingSpace: true,
xmlSortAttributesByKey: false,
xmlQuoteAttributes: 'preserve',
xmlWhitespaceSensitivity: 'ignore',
},
},
Expand Down
Loading

0 comments on commit 3fe9556

Please sign in to comment.