diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-01-03 14:44:02 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-01-03 14:44:02 -0500 |
| commit | cc3bcfa137fcab337e509b380784fbe7ed6bb240 (patch) | |
| tree | e770a5d30a67a12c45eae4c8179773dab2bb7961 /.eslintrc.js | |
| parent | 91363b9a8f2e6fe57b70c459dfe70a5b9e914920 (diff) | |
| download | AleeBot-cc3bcfa137fcab337e509b380784fbe7ed6bb240.tar.gz AleeBot-cc3bcfa137fcab337e509b380784fbe7ed6bb240.tar.bz2 AleeBot-cc3bcfa137fcab337e509b380784fbe7ed6bb240.zip | |
added eslint
Diffstat (limited to '.eslintrc.js')
| -rw-r--r-- | .eslintrc.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..edadc67 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,17 @@ +module.exports = { + "env": { + "browser": true, + "es6": true + }, + "extends": "eslint:recommended", + "globals": { + "Atomics": "readonly", + "SharedArrayBuffer": "readonly" + }, + "parserOptions": { + "ecmaVersion": 2018, + "sourceType": "module" + }, + "rules": { + } +};
\ No newline at end of file |
