We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f6adeb commit 4752bd1Copy full SHA for 4752bd1
1 file changed
bs3-functions/node-functions/.eslintrc.js
@@ -21,17 +21,13 @@ module.exports = {
21
"/lib/**/*", // Ignore built files.
22
"/generated/**/*", // Ignore generated files.
23
],
24
- plugins: [
25
- "@typescript-eslint",
26
- "import",
27
- ],
+ plugins: ["@typescript-eslint", "import"],
28
rules: {
29
- "quotes": ["error", "double"],
+ quotes: ["error", "double"],
30
"import/no-unresolved": 0,
31
- "indent": ["error", 2],
+ indent: ["error", 2],
32
"object-curly-spacing": "off",
33
"block-spacing": "off",
34
"max-len": "off",
35
- "quote-props": ["error", "as-needed"],
36
},
37
};
0 commit comments