aboutsummaryrefslogtreecommitdiff
path: root/2022/17-Pyroclastic-Flow/.eslintrc.json
diff options
context:
space:
mode:
authorJulien Dessaux2022-12-27 18:47:23 +0100
committerJulien Dessaux2022-12-27 18:47:23 +0100
commitc14d3aac12eb3ad50fe14e61e7151b57b8946fde (patch)
treeda7fd75bb380dc45c946d536630fed5501838604 /2022/17-Pyroclastic-Flow/.eslintrc.json
parent2022-16 in js (diff)
downloadadvent-of-code-c14d3aac12eb3ad50fe14e61e7151b57b8946fde.tar.gz
advent-of-code-c14d3aac12eb3ad50fe14e61e7151b57b8946fde.tar.bz2
advent-of-code-c14d3aac12eb3ad50fe14e61e7151b57b8946fde.zip
2022-17 in js
Diffstat (limited to '')
-rw-r--r--2022/17-Pyroclastic-Flow/.eslintrc.json44
1 files changed, 44 insertions, 0 deletions
diff --git a/2022/17-Pyroclastic-Flow/.eslintrc.json b/2022/17-Pyroclastic-Flow/.eslintrc.json
new file mode 100644
index 0000000..81e57d1
--- /dev/null
+++ b/2022/17-Pyroclastic-Flow/.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",
+ "double"
+ ],
+ "semi": [
+ "error",
+ "always"
+ ],
+ "node/no-unsupported-features/es-syntax": [
+ "error",
+ { "ignores": ["modules"] }
+ ]
+ }
+}