1
0
Fork 0
mirror of https://github.com/overleaf/overleaf.git synced 2025-04-14 10:24:36 +00:00

Merge pull request from overleaf/as-lint-prettify-parser

Lint & format lezer-latex parser

GitOrigin-RevId: 41e4cffca7945a1699de3f9dd977c5f8a9ac8c66
This commit is contained in:
June Kelly 2022-07-12 13:21:31 +01:00 committed by Copybot
parent 4dbabe3a8d
commit 7757d8d2ad

View file

@ -22,11 +22,11 @@
"webpack": "webpack serve --config webpack.config.dev.js",
"webpack:production": "webpack --config webpack.config.prod.js",
"webpack:profile": "webpack --config webpack.config.prod.js --profile --json > stats.json",
"format": "prettier --list-different $PWD/'**/*.{js,ts,tsx}'",
"format:fix": "prettier --write $PWD/'**/*.{js,ts,tsx}'",
"format": "prettier --list-different $PWD/'**/*.{js,mjs,ts,tsx}'",
"format:fix": "prettier --write $PWD/'**/*.{js,mjs,ts,tsx}'",
"format:styles": "prettier --list-different $PWD/'**/*.less'",
"format:styles:fix": "prettier --write $PWD/'**/*.less'",
"lint": "eslint --max-warnings 0 --format unix --ext .js,.ts,.tsx .",
"lint": "eslint --max-warnings 0 --format unix --ext .js,.mjs,.ts,.tsx .",
"lint:fix": "eslint --fix --ext .js,.ts,.tsx .",
"type-check": "tsc --noEmit",
"extract-translations": "i18next-scanner",