Skip to content

Commit 135b681

Browse files
Merge pull request #180 from MaddyGuthridge/maddy-eslint-improvements
Fix quotes in eslint config
2 parents 117c066 + 7f3bf7f commit 135b681

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

eslint.config.mjs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -113,21 +113,21 @@ export default ts.config(
113113
// ======================
114114

115115
// Use semicolons to help prevent weird and wonderful JS quirks
116-
"@stylistic/semi": ["error", "always", { omitLastInOneLineBlock: true }],
116+
'@stylistic/semi': ['error', 'always', { omitLastInOneLineBlock: true }],
117117
// Single quotes where possible
118-
"@stylistic/quotes": ["error", "single", { avoidEscape: true, allowTemplateLiterals: false }],
118+
'@stylistic/quotes': ['error', 'single', { avoidEscape: true, allowTemplateLiterals: false }],
119119
// Only quote object properties if it'd be a syntax error otherwise
120-
"@stylistic/quote-props": ["error", "as-needed"],
120+
'@stylistic/quote-props': ['error', 'as-needed'],
121121
// Use one true brace style
122-
"@stylistic/brace-style": ["error", "1tbs", { "allowSingleLine": true }],
122+
'@stylistic/brace-style': ['error', '1tbs', { 'allowSingleLine': true }],
123123
// Always use comma for delimiting type definitions, since it matches object notation
124-
"@stylistic/member-delimiter-style": ["error", {
124+
'@stylistic/member-delimiter-style': ['error', {
125125
multiline: {
126-
delimiter: "comma",
126+
delimiter: 'comma',
127127
requireLast: true,
128128
},
129129
singleline: {
130-
delimiter: "comma",
130+
delimiter: 'comma',
131131
requireLast: false,
132132
}
133133
}],

0 commit comments

Comments
 (0)