end_of_line = lf
trim_trailing_whitespaces = true
indent_style = tab
+quote_type = single
+
+[*.js]
+quote_type = double
\ No newline at end of file
--- /dev/null
+{
+ "rules": {
+ "no-unused-vars": ["warn", { "args": "none", "argsIgnorePattern": "req|res|next|val" }],
+ "quotes": ["error", "double"],
+ "indent": ["error", "tab"],
+ "prettier/prettier": ["error"]
+ }
+}
--- /dev/null
+{
+ "printWidth": 120,
+ "tabWidth": 4,
+ "useTabs": true,
+ "semi": true,
+ "singleQuote": false,
+ "quoteProps": "as-needed",
+ "trailingComma": "all",
+ "bracketSpacing": true,
+ "arrowParens": "always",
+ "endOfLine": "lf"
+}