summaryrefslogtreecommitdiff
path: root/.eslintrc.json
diff options
context:
space:
mode:
authorJulien Dessaux2022-10-22 18:38:28 +0200
committerJulien Dessaux2022-10-22 18:38:28 +0200
commit9c464327fa0c026d638efa82af03710b5b6973b1 (patch)
treed21505325288930ffbd29d24d2b1f33c4cc6759b /.eslintrc.json
parentCompute words and points from placed letters (diff)
downloadjeux-de-mots-9c464327fa0c026d638efa82af03710b5b6973b1.tar.gz
jeux-de-mots-9c464327fa0c026d638efa82af03710b5b6973b1.tar.bz2
jeux-de-mots-9c464327fa0c026d638efa82af03710b5b6973b1.zip
Began writing an express backend
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
new file mode 100644
index 0000000..568bd69
--- /dev/null
+++ b/.eslintrc.json
@@ -0,0 +1,34 @@
+{
+ "env": {
+ "es2021": true,
+ "node": true
+ },
+ "extends": [
+ "eslint:recommended",
+ "plugin:node/recommended"
+ ],
+ "overrides": [
+ ],
+ "parserOptions": {
+ "ecmaVersion": "latest",
+ "sourceType": "module"
+ },
+ "rules": {
+ "indent": [
+ "error",
+ "tab"
+ ],
+ "linebreak-style": [
+ "error",
+ "unix"
+ ],
+ "quotes": [
+ "error",
+ "double"
+ ],
+ "semi": [
+ "error",
+ "always"
+ ]
+ }
+}