diff options
author | Marvin Borner | 2020-09-30 19:46:23 +0200 |
---|---|---|
committer | Marvin Borner | 2020-09-30 19:46:23 +0200 |
commit | a5e2f2db4ebaca6a21a81e00d7506772a7c0d59b (patch) | |
tree | 4c40f6b3ab27c4c03b4f061845db747016ee442a /quotes/.eslintrc.js | |
parent | 4f6fe9fc1033e388c5cdf1dab6afa799547b30ef (diff) |
Quote server bootstrap
Diffstat (limited to 'quotes/.eslintrc.js')
-rw-r--r-- | quotes/.eslintrc.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/quotes/.eslintrc.js b/quotes/.eslintrc.js new file mode 100644 index 0000000..4d11b96 --- /dev/null +++ b/quotes/.eslintrc.js @@ -0,0 +1,14 @@ +module.exports = { + "env": { + "browser": true, + "commonjs": true, + "es2020": true, + "node": true + }, + "extends": "eslint:recommended", + "parserOptions": { + "ecmaVersion": 11 + }, + "rules": { + } +}; |