You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#108 disabled the lint workflow to have ongoing development still have fully passing PRs and tracking main/2.x branches. Before this is released and before the plugin becomes more stable, this should be re-enabled to enforce lint checking on PRs and merges to main/2.x.
UPDATE: the PR was closed as this was disabled from github itself. details in referenced PR. This can be re-enabled the same way, at which time we can close this issue.
Additional linting mechanisms to re-enable:
pre-commit configuration:
In package.json, add:
"pre-commit": [
"lint:es:precommit"
],
pre-commit dependency:
add this in devDependencies:
"devDependencies": {
"pre-commit": "^1.2.2"
},
pre-commit script
add this script under scripts in package.json:
Additionally, pre-commit configuration should be added back, to enable linting on every commit by default. It was removed due to lint violations during rapid development and the fatigue of constantly adding --no-verify when committing:
In package.json, add:
"pre-commit": [
"lint:es:precommit"
],
add this in devDependencies:
"devDependencies": {
"pre-commit": "^1.2.2"
},
```,
add this script:
#108 disabled the lint workflow to have ongoing development still have fully passing PRs and tracking main/2.x branches. Before this is released and before the plugin becomes more stable, this should be re-enabled to enforce lint checking on PRs and merges to main/2.x.
UPDATE: the PR was closed as this was disabled from github itself. details in referenced PR. This can be re-enabled the same way, at which time we can close this issue.
Additional linting mechanisms to re-enable:
In
package.json
, add:add this in
devDependencies
:add this script under
scripts
inpackage.json
:Re-enable pre-commit hooks in
.git/hooks
in the repositoryRe-enable codecov. Details of it being disabled in Parse and persist UI metadata on editor page #125
The text was updated successfully, but these errors were encountered: