aboutsummaryrefslogtreecommitdiff
path: root/2020/14-Docking_Data/.eslintrc.json
diff options
context:
space:
mode:
authorJulien Dessaux2023-03-29 23:30:06 +0200
committerJulien Dessaux2023-03-29 23:30:06 +0200
commit81cd59c03af55d52f72521f0c9f58f547a944dd8 (patch)
tree7fbbe23c0c8dee6f24be37d4f2f0f446d806ce08 /2020/14-Docking_Data/.eslintrc.json
parent2020-14 part 2 in haskell (diff)
downloadadvent-of-code-81cd59c03af55d52f72521f0c9f58f547a944dd8.tar.gz
advent-of-code-81cd59c03af55d52f72521f0c9f58f547a944dd8.tar.bz2
advent-of-code-81cd59c03af55d52f72521f0c9f58f547a944dd8.zip
2020-14 part 2 in javascript
Diffstat (limited to '')
-rw-r--r--2020/14-Docking_Data/.eslintrc.json44
1 files changed, 44 insertions, 0 deletions
diff --git a/2020/14-Docking_Data/.eslintrc.json b/2020/14-Docking_Data/.eslintrc.json
new file mode 100644
index 0000000..47dd5e6
--- /dev/null
+++ b/2020/14-Docking_Data/.eslintrc.json
@@ -0,0 +1,44 @@
+{
+ "env": {
+ "es2021": true,
+ "node": true
+ },
+ "extends": [
+ "eslint:recommended",
+ "plugin:node/recommended"
+ ],
+ "overrides": [
+ {
+ "files": ["*.js"],
+ "rules": {
+ "no-constant-condition": "off"
+ }
+ }
+ ],
+ "parserOptions": {
+ "ecmaVersion": "latest",
+ "sourceType": "module"
+ },
+ "rules": {
+ "indent": [
+ "error",
+ "tab"
+ ],
+ "linebreak-style": [
+ "error",
+ "unix"
+ ],
+ "quotes": [
+ "error",
+ "single"
+ ],
+ "semi": [
+ "error",
+ "always"
+ ],
+ "node/no-unsupported-features/es-syntax": [
+ "error",
+ { "ignores": ["modules"] }
+ ]
+ }
+}