Skip to content

Commit 1d3fc77

Browse files
committed
Rename eslint_src to eslint_js
1 parent 94dab62 commit 1d3fc77

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

common.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ all: lint test build
1818
dist: clean lint test build html
1919

2020
_lint:
21-
@eslint --config $(ROOT)/eslint_src.json --max-warnings 0 src/
21+
@eslint --config $(ROOT)/eslint_js.json --max-warnings 0 src/
2222
@eslint --config $(ROOT)/eslint_test.json --max-warnings 0 test/
2323
@echo -e " $(OK) lint"
2424

File renamed without changes.

eslint_ts.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"plugin:@typescript-eslint/eslint-recommended",
1414
"plugin:@typescript-eslint/recommended",
1515
"plugin:@typescript-eslint/recommended-requiring-type-checking",
16-
"./eslint_src.json"
16+
"./eslint_js.json"
1717
],
1818
"rules": {
1919
"complexity": "off",

fluent-dom/makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ DEPS := cached-iterable:CachedIterable
55
include ../common.mk
66

77
lint:
8-
@eslint --config $(ROOT)/eslint_src.json --max-warnings 0 src/
8+
@eslint --config $(ROOT)/eslint_js.json --max-warnings 0 src/
99
@eslint --config $(ROOT)/eslint_test.json --max-warnings 0 test/
1010
@echo -e " $(OK) lint"
1111

0 commit comments

Comments
 (0)