-
- Downloads
Add Gitignore
Add JS Module Add ESLint config Add data.js
Showing
- .gitignore 2 additions, 0 deletions.gitignore
- eslint.config.mjs 16 additions, 0 deletionseslint.config.mjs
- helper/data.js 10 additions, 0 deletionshelper/data.js
- index.html 15 additions, 12 deletionsindex.html
- index.js 8 additions, 1 deletionindex.js
- package.json 10 additions, 2 deletionspackage.json
.gitignore
0 → 100644
eslint.config.mjs
0 → 100644
helper/data.js
0 → 100644
... | ... | @@ -4,8 +4,16 @@ |
"description": "A basic vanilla repo for education", | ||
"main": "index.html", | ||
"scripts": { | ||
"test": "npm run dev" | ||
"test": "npm run dev", | ||
"lint": "eslint", | ||
"lint:fix": "npm run lint -- --fix" | ||
}, | ||
"author": "subliminalguy", | ||
"license": "ISC" | ||
"license": "ISC", | ||
"devDependencies": { | ||
"@eslint/js": "^9.19.0", | ||
"eslint": "^8.57.1", | ||
"eslint-config-airbnb": "^19.0.4", | ||
"globals": "^15.14.0" | ||
} | ||
} |
Please register or sign in to comment