Some checks failed
CI / test-lang (push) Successful in 1m51s
Build Test / Build and Test (push) Failing after 31m5s
CI / test-backend (pull_request) Successful in 54s
Build and Publish Docker Image / build (pull_request) Has been skipped
CI / test-lang (pull_request) Successful in 1m8s
OSV-Scanner PR Scan / scan-pr (pull_request) Successful in 29s
CI / lint (push) Failing after 5m11s
CI / lint (pull_request) Failing after 5m8s
CI / build-frontend (pull_request) Successful in 9m45s
Tests / test (push) Successful in 13m22s
Benchmarks / benchmark (push) Successful in 14m43s
Benchmarks / benchmark (pull_request) Successful in 14m46s
Build and Publish Docker Image / build-dev (pull_request) Successful in 17m29s
CI / test-backend (push) Successful in 3s
Tests / test (pull_request) Failing after 20m54s
CI / build-frontend (push) Successful in 1m53s
Build Test / Build and Test (pull_request) Failing after 30m58s
60 lines
1.6 KiB
JavaScript
60 lines
1.6 KiB
JavaScript
import js from "@eslint/js";
|
|
import pluginVue from "eslint-plugin-vue";
|
|
import pluginPrettier from "eslint-plugin-prettier/recommended";
|
|
import globals from "globals";
|
|
|
|
export default [
|
|
{
|
|
ignores: [
|
|
"**/node_modules/**",
|
|
"**/dist/**",
|
|
"**/build/**",
|
|
"**/out/**",
|
|
"**/android/**",
|
|
"**/MagicMock/**",
|
|
"**/reticulum_meshchatx.egg-info/**",
|
|
"**/electron/assets/**",
|
|
"**/meshchatx/public/**",
|
|
"**/meshchatx/src/frontend/public/**",
|
|
"**/storage/**",
|
|
"**/__pycache__/**",
|
|
"**/.venv/**",
|
|
"**/*.min.js",
|
|
"**/pnpm-lock.yaml",
|
|
"**/poetry.lock",
|
|
"**/linux-unpacked/**",
|
|
"**/win-unpacked/**",
|
|
"**/mac-unpacked/**",
|
|
"**/*.asar",
|
|
"**/*.asar.unpacked/**",
|
|
"**/*.wasm",
|
|
"**/*.proto",
|
|
"**/tests/**",
|
|
"**/.pnpm-store/**",
|
|
],
|
|
},
|
|
{
|
|
files: ["**/*.{js,mjs,cjs,vue}"],
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.browser,
|
|
...globals.node,
|
|
axios: "readonly",
|
|
Codec2Lib: "readonly",
|
|
Codec2MicrophoneRecorder: "readonly",
|
|
},
|
|
},
|
|
},
|
|
js.configs.recommended,
|
|
...pluginVue.configs["flat/recommended"],
|
|
pluginPrettier,
|
|
{
|
|
files: ["**/*.{js,mjs,cjs,vue}"],
|
|
rules: {
|
|
"vue/multi-word-component-names": "off",
|
|
"no-unused-vars": "warn",
|
|
"no-console": "off",
|
|
},
|
|
},
|
|
];
|