Skip to content
This repository has been archived by the owner on Dec 22, 2021. It is now read-only.

Commit

Permalink
turns out eslint wasnt running right
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas377 committed Aug 15, 2021
1 parent 7970d1c commit f6ee961
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 11 deletions.
7 changes: 5 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# ignore the massive files that we won't change
# ignore the massive files

**/ap++.js
**/fmc.js
**/fmc.js

# Ignore the generated docs
docs/
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
run: npm i

- name: Lint
run: sudo npx eslint --debug
run: sudo npx eslint . --debug

job_4:
name: Security
Expand Down
2 changes: 1 addition & 1 deletion docs/background.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ <h3>Global</h3>
<footer>
Documentation generated by
<a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Sun Aug 15
2021 13:05:08 GMT-0400 (Eastern Daylight Time)
2021 13:12:35 GMT-0400 (Eastern Daylight Time)
</footer>

<script>
Expand Down
2 changes: 1 addition & 1 deletion docs/global.html
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ <h3>Global</h3>
<footer>
Documentation generated by
<a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Sun Aug 15
2021 13:05:08 GMT-0400 (Eastern Daylight Time)
2021 13:12:35 GMT-0400 (Eastern Daylight Time)
</footer>

<script>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ <h3>Global</h3>
<footer>
Documentation generated by
<a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Sun Aug 15
2021 13:05:08 GMT-0400 (Eastern Daylight Time)
2021 13:12:35 GMT-0400 (Eastern Daylight Time)
</footer>

<script>
Expand Down
2 changes: 1 addition & 1 deletion docs/ui_needspermissions_needspermissions.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ <h3>Global</h3>
<footer>
Documentation generated by
<a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Sun Aug 15
2021 13:05:08 GMT-0400 (Eastern Daylight Time)
2021 13:12:35 GMT-0400 (Eastern Daylight Time)
</footer>

<script>
Expand Down
2 changes: 1 addition & 1 deletion docs/ui_oninstall_oninstall.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ <h3>Global</h3>
<footer>
Documentation generated by
<a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Sun Aug 15
2021 13:05:08 GMT-0400 (Eastern Daylight Time)
2021 13:12:35 GMT-0400 (Eastern Daylight Time)
</footer>

<script>
Expand Down
2 changes: 1 addition & 1 deletion docs/ui_popup_popup.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ <h3>Global</h3>
<footer>
Documentation generated by
<a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Sun Aug 15
2021 13:05:08 GMT-0400 (Eastern Daylight Time)
2021 13:12:35 GMT-0400 (Eastern Daylight Time)
</footer>

<script>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"url": "git+https://github.com/GeoFS-Autoland/autoland.git"
},
"scripts": {
"build": "npm i && node build.js && npx jsdoc -c jsdoc.json && npx prettier --write . && npx eslint --fix --debug",
"build": "npm i && node build.js && npx jsdoc -c jsdoc.json && npx prettier --write . && npx eslint . --fix --debug",
"commit": "python commit.py",
"test": "npx prettier --check . && npx eslint --debug && npx audit-ci --info && npm outdated"
"test": "npx prettier --check . && npx eslint . --debug && npx audit-ci --info && npm outdated"
},
"devDependencies": {
"@types/chrome": "latest",
Expand Down

0 comments on commit f6ee961

Please sign in to comment.