eslint config updated

This commit is contained in:
Daniel Shleifman
2022-06-13 19:59:28 +03:00
parent 46246d9dff
commit e7b172e013

View File

@@ -8,7 +8,8 @@
"jsxSingleQuote": true, "jsxSingleQuote": true,
"printWidth": 120, "printWidth": 120,
"arrowParens": "avoid", // Allow single argument without parentheses in arrow functions "arrowParens": "avoid", // Allow single argument without parentheses in arrow functions
"semi": false "semi": false,
"endOfLine": "crlf"
}], }],
"import/no-anonymous-default-export": 0, // Allow "export default" "import/no-anonymous-default-export": 0, // Allow "export default"
"import/no-extraneous-dependencies": ["error", {"devDependencies": ["**/*.test.js", "**/*.spec.js"]}], "import/no-extraneous-dependencies": ["error", {"devDependencies": ["**/*.test.js", "**/*.spec.js"]}],