2 Commits
Author SHA1 Message Date
alu cbed40d904 fix makefile phony targets 2026-08-03 18:24:18 +00:00
alu 075ea07766 add ingore paths for web component linters 2026-07-31 23:59:07 +00:00
4 changed files with 10 additions and 2 deletions
+2 -1
View File
@@ -1,4 +1,4 @@
.PHONY: build test clean wfa-js
.PHONY: build build-web build-wfa-js clean clean-wfa-js ensure-dist workflow-init
build: clean ensure-dist build-web build-wfa-js
@echo "======================== Building Binary ======================="
@@ -24,3 +24,4 @@ ensure-dist:
mkdir -p dist
workflow-init: ensure-dist build-web
cp -r dev_config/. .
+3
View File
@@ -0,0 +1,3 @@
web/modules/*
WFA-JS/*
dist/*
+3
View File
@@ -0,0 +1,3 @@
web/modules/*
WFA-JS/*
dist/*
+2 -1
View File
@@ -1,9 +1,10 @@
import { defineConfig } from "eslint/config";
import { defineConfig, globalIgnores } from "eslint/config";
import globals from "globals";
import js from "@eslint/js";
export default defineConfig([
js.configs.recommended,
globalIgnores(["dist/", "web/modules", "WFA-JS"]),
{
languageOptions: {
globals: {