Skip to content

Commit 4752bd1

Browse files
rmnpptRoman Popat
andauthored
quote properties in eslintrc (#46)
Co-authored-by: Roman Popat <roman.popat@proton.me>
1 parent 3f6adeb commit 4752bd1

1 file changed

Lines changed: 3 additions & 7 deletions

File tree

bs3-functions/node-functions/.eslintrc.js

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,13 @@ module.exports = {
2121
"/lib/**/*", // Ignore built files.
2222
"/generated/**/*", // Ignore generated files.
2323
],
24-
plugins: [
25-
"@typescript-eslint",
26-
"import",
27-
],
24+
plugins: ["@typescript-eslint", "import"],
2825
rules: {
29-
"quotes": ["error", "double"],
26+
quotes: ["error", "double"],
3027
"import/no-unresolved": 0,
31-
"indent": ["error", 2],
28+
indent: ["error", 2],
3229
"object-curly-spacing": "off",
3330
"block-spacing": "off",
3431
"max-len": "off",
35-
"quote-props": ["error", "as-needed"],
3632
},
3733
};

0 commit comments

Comments
 (0)