1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-04-20 22:22:05 +02:00

setup linter

This commit is contained in:
BcRikko 2023-04-01 12:29:05 +09:00
parent 86ae1f9185
commit 43d8de47bc
5 changed files with 4242 additions and 18 deletions

12
.eslintrc Normal file
View File

@ -0,0 +1,12 @@
{
"env": {
"browser": false,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"]
}

3
.stylelintrc Normal file
View File

@ -0,0 +1,3 @@
{
"extends": "stylelint-config-recommended"
}

4215
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -2,6 +2,9 @@
"name": "nes.css",
"description": "NES.css is NES-style CSS Framework.",
"scripts": {
"lint": "run-p lint:*",
"lint:es": "eslint .",
"lint:css": "stylelint **/*.css",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
@ -25,9 +28,15 @@
"@storybook/html": "^7.0.0",
"@storybook/html-vite": "^7.0.0",
"@storybook/testing-library": "^0.0.14-next.2",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.0.0"
},
"peerDependencies": {}
"storybook": "^7.0.0",
"stylelint": "^15.3.0",
"stylelint-config-recommended": "^11.0.0",
"typescript": "^5.0.3"
}
}

View File

@ -16,20 +16,17 @@
initial-value: gray;
}
/**
* CSS Variables
*/
.nes-btn {
/**
* CSS Variables
*/
--nes-btn-border-width: 4px;
--nes-btn-border-color: black;
--nes-btn-border-inset-color: gray;
}
/**
* Basic Style
*/
.nes-btn {
/**
* Basic Style
*/
border: solid var(--nes-btn-border-width) var(--nes-btn-border-color);
box-shadow:
inset 0 calc(var(--nes-btn-border-width) * -1) var(--nes-btn-border-inset-color),