diff options
| author | taehoon <th.dev91@gmail.com> | 2019-02-07 03:05:59 -0500 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-02-15 13:34:33 -0500 |
| commit | 13725f040bca346a7b35b832f36f4e86c5da11e4 (patch) | |
| tree | aafd73aa352b6f2e52b968d1e2e79cb225cdc0d6 /.eslintrc.js | |
| parent | 4f95371081fd54291e3d81d7e254e9cfa1bd5b82 (diff) | |
Add avatar crop popup
Diffstat (limited to '.eslintrc.js')
| -rw-r--r-- | .eslintrc.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.eslintrc.js b/.eslintrc.js index 8e6549e5..32842d3c 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -10,8 +10,14 @@ module.exports = { plugins: [ 'html' ], + globals: { + 'FileReader': false, + 'Element': false, + 'FormData': false, + 'XMLHttpRequest': false + }, // add your custom rules here - 'rules': { + rules: { // allow paren-less arrow functions 'arrow-parens': 0, // allow async-await |
