2
0
Derivar 0

copy prettier and jshint

Este cometimento está contido em:
AJ ONeal 2019-07-23 17:32:37 -06:00
ascendente 2f03a2ce57
cometimento 18c0220b33
2 ficheiros modificados com 25 adições e 0 eliminações

17
.jshintrc Ficheiro normal
Ver ficheiro

@ -0,0 +1,17 @@
{ "node": true
, "browser": true
, "jquery": true
, "globals": { "Promise": true }
, "indent": 2
, "onevar": true
, "laxcomma": true
, "laxbreak": true
, "curly": true
, "nonbsp": true
, "eqeqeq": true
, "immed": true
, "undef": true
, "latedef": "nofunc"
}

8
.prettierrc Ficheiro normal
Ver ficheiro

@ -0,0 +1,8 @@
{
"bracketSpacing": true,
"printWidth": 80,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "none",
"useTabs": true
}