Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Node review #494

Merged
merged 12 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ coverage.xml

# Django stuff:
*.log
staticfiles/
staticfiles*
staticfiles_ml/
staticfiles_ml*

# vim
*.swp
Expand Down Expand Up @@ -112,11 +112,7 @@ uwsgi*.ini
mooringlicensing/frontend/mooringlicensing/package-lock.json

# npm build files
mooringlicensing/static/mooringlicensing_vue/css/app.css
mooringlicensing/static/mooringlicensing_vue/js/app.js
mooringlicensing/static/mooringlicensing_vue/js/manifest.js
mooringlicensing/static/mooringlicensing_vue/js/vendor.js
mooringlicensing/static/mooringlicensing_vue/js/babel-polyfill.js
mooringlicensing/static/mooringlicensing_vue/

git_history_recent

Expand Down
15 changes: 0 additions & 15 deletions mooringlicensing/frontend/mooringlicensing/.babelrc

This file was deleted.

9 changes: 0 additions & 9 deletions mooringlicensing/frontend/mooringlicensing/.editorconfig

This file was deleted.

2 changes: 0 additions & 2 deletions mooringlicensing/frontend/mooringlicensing/.eslintignore

This file was deleted.

31 changes: 31 additions & 0 deletions mooringlicensing/frontend/mooringlicensing/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"extends": [
"eslint:recommended",
"plugin:vue/recommended",
"prettier"
],
"plugins": [
"vue",
"prettier"
],
"rules": {
"prettier/prettier": "error"
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2021
},
"env": {
"browser": true,
"es6": true,
"node": true,
"jquery": true
},
"globals": {
"moment": true,
"swal": true,
"bootstrap": true,
"env": true,
"_": true // Lodash
}
}
28 changes: 0 additions & 28 deletions mooringlicensing/frontend/mooringlicensing/.eslintrc.js

This file was deleted.

6 changes: 6 additions & 0 deletions mooringlicensing/frontend/mooringlicensing/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true
}
35 changes: 0 additions & 35 deletions mooringlicensing/frontend/mooringlicensing/build/build.js

This file was deleted.

48 changes: 0 additions & 48 deletions mooringlicensing/frontend/mooringlicensing/build/check-versions.js

This file was deleted.

This file was deleted.

97 changes: 0 additions & 97 deletions mooringlicensing/frontend/mooringlicensing/build/dev-server.js

This file was deleted.

71 changes: 0 additions & 71 deletions mooringlicensing/frontend/mooringlicensing/build/utils.js

This file was deleted.

Loading
Loading