Merge pull request #9845 from Extarys/frio-eslint-prettier

Add eslint, prettier config files to Frio folder
This commit is contained in:
Hypolite Petovan 2021-01-21 22:27:22 -05:00 committed by GitHub
commit 1193b73125
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 24 additions and 0 deletions

View File

@ -8,3 +8,7 @@ charset = utf-8
end_of_line = lf
trim_trailing_whitespaces = true
indent_style = tab
quote_type = single
[*.js]
quote_type = double

View File

@ -0,0 +1,8 @@
{
"rules": {
"no-unused-vars": ["warn", { "args": "none", "argsIgnorePattern": "req|res|next|val" }],
"quotes": ["error", "double"],
"indent": ["error", "tab"],
"prettier/prettier": ["error"]
}
}

View File

@ -0,0 +1,12 @@
{
"printWidth": 120,
"tabWidth": 4,
"useTabs": true,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf"
}