Eslint
This commit is contained in:
parent
4243b4f213
commit
7f9bddb00f
4 changed files with 1266 additions and 0 deletions
7
client-solid/.eslintrc.cjs
Normal file
7
client-solid/.eslintrc.cjs
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
/* eslint-env node */
|
||||||
|
module.exports = {
|
||||||
|
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
|
||||||
|
parser: '@typescript-eslint/parser',
|
||||||
|
plugins: ['@typescript-eslint'],
|
||||||
|
root: true,
|
||||||
|
};
|
1255
client-solid/package-lock.json
generated
1255
client-solid/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -13,8 +13,11 @@
|
||||||
"solid-js": "^1.8.5"
|
"solid-js": "^1.8.5"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@typescript-eslint/eslint-plugin": "^6.10.0",
|
||||||
|
"@typescript-eslint/parser": "^6.10.0",
|
||||||
"autoprefixer": "^10.4.16",
|
"autoprefixer": "^10.4.16",
|
||||||
"daisyui": "^4.0.1",
|
"daisyui": "^4.0.1",
|
||||||
|
"eslint": "^8.53.0",
|
||||||
"postcss": "^8.4.31",
|
"postcss": "^8.4.31",
|
||||||
"tailwindcss": "^3.3.5",
|
"tailwindcss": "^3.3.5",
|
||||||
"typescript": "^5.2.2",
|
"typescript": "^5.2.2",
|
||||||
|
|
|
@ -26,6 +26,7 @@ export default {
|
||||||
theme: {
|
theme: {
|
||||||
extend: {},
|
extend: {},
|
||||||
},
|
},
|
||||||
|
// eslint-disable-next-line no-undef
|
||||||
plugins: [require("daisyui")],
|
plugins: [require("daisyui")],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue