Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Verified Commit ae1dc88b authored by Nicolas Gelot's avatar Nicolas Gelot
Browse files

Auto format the code with prettier

parent 12205031
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -37,13 +37,13 @@ docker-build-image-tag:
  rules:
    - if: '$CI_COMMIT_TAG'

linter:
check:
  stage: build
  image: node:23-alpine
  script:
    - cd app
    - npm install
    - npm run lint
    - npm run check
  rules:
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'

app/.prettierignore

0 → 100644
+3 −0
Original line number Diff line number Diff line
# Ignore artifacts:
lib
dist

app/.prettierrc

0 → 100644
+1 −0
Original line number Diff line number Diff line
{}
+2 −3
Original line number Diff line number Diff line
import globals from "globals";
import pluginJs from "@eslint/js";


/** @type {import('eslint').Linter.Config[]} */
export default [
  { languageOptions: { globals: globals.browser } },
Loading