copy prettier and jshint

这个提交包含在:
AJ ONeal 2019-07-23 17:32:37 -06:00
父节点 2f03a2ce57
当前提交 18c0220b33
共有 2 个文件被更改,包括 25 次插入0 次删除

17
.jshintrc 普通文件
查看文件

@ -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 普通文件
查看文件

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